Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
toUpperCase() solution in Clear category for All Upper I by dbirmajer
import assert from "assert";
function isAllUpper(text: string): boolean {
return text === text.toUpperCase()
}
console.log('Example:');
console.log(isAllUpper('ALL UPPER'));
// These "asserts" are used for self-checking
assert.equal(isAllUpper('ALL UPPER'), true);
assert.equal(isAllUpper('all lower'), false);
assert.equal(isAllUpper('mixed UPPER and lower'), false);
assert.equal(isAllUpper(''), true);
console.log("Coding complete? Click 'Check' to earn cool rewards!");
Jan. 15, 2021