Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 13:26
Show Gist options
  • Save unknownuser88/8282882 to your computer and use it in GitHub Desktop.
Save unknownuser88/8282882 to your computer and use it in GitHub Desktop.
toUpperCase() Returns the string with all of its characters converted to uppercase.
//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