Answers for "how to turn all the string in uppercase in javascript"

59

uppercase string in js

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

uppercase in word javascript

function toTitleCase(str) {
    return str.replace(/\w\S*/g, function(txt){
        return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
    });
}
Posted by: Guest on April-11-2020
-1

How to upper case a string in javascrip

let word = "hello";
word.toUpperCase();
Posted by: Guest on February-17-2022

Code answers related to "how to turn all the string in uppercase in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language