30秒学会 JavaScript 片段 · 2019年8月11日

30秒学会 JavaScript 片段 – isUpperCase

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