$string.toLowerCase()
All letters of the string string will be converted to lowercase.
| Name | Type | Description | Mandatory | Default |
|---|---|---|---|---|
| string | String | String that is to be converted. | yes |
Type: String
string in lowercase.
toLowerCase("HELLO WORLD!")
Output: hello world!