| Microsoft® JScript toLowerCase Method | Language Reference Version 1 | 
Places the text in a String object in lowercase characters.
strVariable.toLowerCase( )
"String Literal".toLowerCase( )
The toLowerCase method has no effect on nonalphabetic characters.The following example demonstrates the effects of the toLowerCase method:
The value of strVariable after the last statement is:var strVariable = "This is a STRING object"; strVariable = strVariable.toLowerCase( );this is a string object