Lower

type

returns

Getter

string

Explanation

Returns the string with all applicable characters transformed into their lowercase counterparts.

Examples

"Hello".lower == "hello"
"123".lower == "123"
"Hello, World!" == "hello, world!"

Last updated