tolower()
Converts the input string to lower case.
Syntax
tolower(
value)
Parameters
Name | Type | Required | Description |
---|---|---|---|
value | string | ✓ | The value to convert to a lowercase string. |
Returns
If conversion is successful, result is a lowercase string.
If conversion isn't successful, result is null
.
Example
tolower("Hello") == "hello"