tolower()
Learn how to use the tolower() function to convert the input string to lower case.
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"
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.