Language Reference toLowerCase Method


Description

Places the text in the object in all lower case characters.

Syntax

strVariable.toLowerCase( ) "String Literal".toLowerCase( )

Remarks

This method has no effect on non-alphabetic characters.

Below is an example of the effects of the toLowerCase method:

var strVariable = "This is a STRING object"
strVariable.toLowerCase()

The value of strVariable after the last statement above is: this is a string object