string.toLowerCase()

Convert a String to lower case.

Signature

toLowerCase() => String

Description

Converts the calling String to lower case. The calling String isn’t changed.

Parameters

None

Return value

Type Description

String

Lower case version of the calling String.

Examples

Convert an email address to lower case:

"john.doe@EXAMPLE.COM".toLowerCase()
"john.doe@example.com"
\