Created
January 6, 2014 13:26
-
-
Save unknownuser88/8282882 to your computer and use it in GitHub Desktop.
toUpperCase() Returns the string with all of its characters converted to uppercase.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//toUpperCase() | |
var myString = 'javascript rox'; | |
myString = myString.toUpperCase(); | |
console.log(myString) | |
//output: JAVASCRIPT ROX |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment