Microsoft® JScript toUpperCase Method |
| Language Reference | |
Places the text in a String object in uppercase characters.
strVariable.toUpperCase( )
"String Literal".toUpperCase( )
The toUpperCase method has no effect on non-alphabetic characters.
The following example demonstrates the effects of the toUpperCase method:
var strVariable = "This is a STRING object" strVariable.toUpperCase()The value of strVariable after the last statement is: THIS IS A STRING OBJECT.