Answers for "how to make a whole string uppercase in js"

59

uppercase javascript

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

string to capitalize javascript

const str = 'flexiple';
const str2 = str.charAt(0).toUpperCase() + str.slice(1);
console.log(str2);

//Output: Flexiple

const str = 'abc efg';
const str2 = str.charAt(0).toUpperCase() + str.slice(1);
console.log(str2);

//Output: Abc efg
Posted by: Guest on November-10-2021

Code answers related to "how to make a whole string uppercase in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language