Places the text in a String object in lowercase characters.
Syntax
Parameters
Returns
This method returns a copy of the String object, with all of the uppercase characters converted to lowercase. The original value is unchanged. The toLowerCase method has no effect on nonalphabetic characters.
Example
s = "Hello World"; r = s.toLowerCase(); trace(r); //output: hello world