Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
checking if text is the same when uppercase, and different when lowercase solution in Clear category for All Upper II by lolucky
var isAllUpper=(t)=>t.toUpperCase()===t&&t!==t.toLowerCase();
July 4, 2020