Files
30-seconds-of-code/snippets/isUpperCase.md
Angelos Chalaris 611729214a Snippet format update
To match the starter (for the migration)
2019-08-13 10:29:12 +03:00

18 lines
365 B
Markdown

---
title: isUpperCase
tags: string,utility,beginner
---
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
```