Skip to content

Instantly share code, notes, and snippets.

View MateusAlvarenga's full-sized avatar

Mateus Alvarenga MateusAlvarenga

View GitHub Profile
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();
```