Checks if a string is upper case.
Convert the given string to upper case, using String.prototype.toUpperCase()
and compare it to the original.
代码片段
const isUpperCase = str => str === str.toUpperCase();
使用样例
isUpperCase('ABC'); // true
isUpperCase('A3@$'); // true
isUpperCase('aB4'); // false