Answers for "Which one of these is the correct syntax of converting a string to uppercase in javascipt"

49

uppercase string in js

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

capitalize in javascript

const name = 'flavio'
const nameCapitalized = name.charAt(0).toUpperCase() + name.slice(1)
Posted by: Guest on August-13-2020

Code answers related to "Which one of these is the correct syntax of converting a string to uppercase in javascipt"

Code answers related to "Javascript"

Browse Popular Code Answers by Language