Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |
Microsoft® JScript® toUpperCase Method |
Language Reference Version 1 |
Returns a string where all alphabetic characters have been converted to uppercase.
strVariable.toUpperCase( )
"String Literal".toUpperCase( )
The toUpperCase method has no effect on nonalphabetic characters.The following example demonstrates the effects of the toUpperCase method:
The value of strVariable after the last statement is:var strVariable = "This is a STRING object"; strVariable = strVariable.toUpperCase( );THIS IS A STRING OBJECT
Home | Javascript validator | JavaScript Editor | Get Advanced JavaScript and Ajax Editor, Validator and Debugger! 1st JavaScript Editor. |