String toLowerCase()
syntax: |
string.toLowerCase() |
return: |
string - copy of a string with all of the letters changed to lower case.
|
description: |
This method changes the case of a string.
|
see: |
String toUpperCase(), String toLocaleLowerCase()
|
example: |
var string = new String("Hello, World!"); string.toLowerCase()
// This will return the string "hello, world!". |