Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
All Upper I solution in Clear category for All Upper I by Atadolfo
import assert from "assert";
var isAllUpper =(text: string): boolean => 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!");
April 23, 2020
Comments: