how to capitalise text in javascript code example
Example 1: uppercase javascript
var str = "Hello World!";
var res = str.toUpperCase(); //HELLO WORLD!
Example 2: capitalize first carater js
p.capitalize {
text-transform: capitalize;
}
var str = "Hello World!";
var res = str.toUpperCase(); //HELLO WORLD!
p.capitalize {
text-transform: capitalize;
}