Converts a string to lowercase returning LowerCase as type
toLowerCase('Hello, world!') // 'hello, world!' Copy
toLowerCase('Hello, world!') // 'hello, world!'
The string type.
The string to convert.
The converted string.
Converts a string to lowercase returning LowerCase
as typeExample