Answers for "how to use touppercase js"

49

uppercase javascript

var str = "Hello World!";
var res = str.toUpperCase();  //HELLO WORLD!
Posted by: Guest on July-30-2020
0

toUpperCase Examples¶

//The general syntax for this method is:

stringName.toUpperCase();
/*This method returns a copy of stringName with all lowercase letters 
replaced by their uppercase counterparts. It leaves non-alphabetic 
characters unchanged.*/

console.log("LaunchCode".toUpperCase());
console.log("launchcode".toUpperCase());
console.log("LaunchCode's LC101".toUpperCase());

//LAUNCHCODE
//LAUNCHCODE
//LAUNCHCODE'S LC101
Posted by: Guest on June-14-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language