how to change small letter to capital letter in javascript code example
Example: uppercase javascript
var str = "Hello World!";
var res = str.toUpperCase(); //HELLO WORLD!
var str = "Hello World!";
var res = str.toUpperCase(); //HELLO WORLD!