Answers for "to uppercase method in js"

59

uppercase javascript

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

js to uppercase

var string = "A string";

var upperCase = string.toUpperCase();
console.log(upperCase); // -> A STRING

var lowerCase = string.toLowerCase();
console.log(lowerCase); // -> a string
Posted by: Guest on July-17-2021
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 "Javascript"

Browse Popular Code Answers by Language