.toLower()
Description
toLower returns the input string but in fully lowercase
Parameters
toLower takes no parameters
Usage On Strings
num = "Hello World"
log num.toLower()
// hello worldLast updated
Was this helpful?