My code passes the basic tests, then returns "NoExecFunction" when I run check solution. Not sure why this is happening.
Here's my code:
const isAllUpper = (text) =>{
if (! text) {
return true;
} else {
return text.toUpperCase() === text;
}
};
Created at: 2022/06/02 00:42; Updated at: 2022/06/02 00:42
The question is resolved.