jquery convert the string to capital letters 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!