21 lines
436 B
Markdown
21 lines
436 B
Markdown
---
|
|
title: isUpperCase
|
|
tags: string,beginner
|
|
firstSeen: 2018-01-06T11:16:05+02:00
|
|
lastUpdated: 2020-09-15T16:28:04+03:00
|
|
---
|
|
|
|
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
|
|
isUpperCase('A3@$'); // true
|
|
isUpperCase('aB4'); // false
|
|
```
|