This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here's your cheatsheet rewritten in Markdown format, which is ideal for documentation or note taking. | |
## JavaScript String Case Conversion Cheatsheet | |
### 1. lower case | |
Converts all the characters in the string to lower case. | |
```javascript | |
str.toLowerCase(); | |
``` |