Correct: `Array.from()` (it’s a static method) Incorrect: `Array.join()` (doesn’t exist; it’s a prototype method) This patch uses the common `#` syntax to denote `.prototype.`.
17 lines
326 B
Markdown
17 lines
326 B
Markdown
### 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.
|
|
|
|
|
|
```js
|
|
const isUpperCase = str => str === str.toUpperCase();
|
|
```
|
|
|
|
```js
|
|
isUpperCase('ABC'); // true
|
|
isLowerCase('A3@$'); // true
|
|
isLowerCase('aB4'); // false
|
|
```
|