Returns a string where all alphabetic characters have been converted to lowercase.
function toLowerCase() : String
The toLowerCase method has no effect on non-alphabetic characters.
The following example demonstrates the effects of the toLowerCase method:
var strVariable = "This is a STRING object"; strVariable = strVariable.toLowerCase();
The value of strVariable after the last statement is:
strVariable
this is a string object
Version 1
String Object