Microsoft JScript
toUpperCase Method
Language Reference
Version 1

See Also Applies To


Description
Places the text in a String object in uppercase characters.
Syntax
strVariable.toUpperCase( )
"String Literal".toUpperCase( )
Remarks

The toUpperCase method has no effect on nonalphabetic characters. The following example demonstrates the effects of the toUpperCase method:


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


The value of strVariable after the last statement is:


THIS IS A STRING OBJECT



Comments