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 ddavidse
function isAllUpper(text: string): boolean {
return text.toUpperCase() == text;
}
Dec. 18, 2020