How to convert string to upper case
Description
toUpperCase()
converts string to upper case.
Example
var stringValue = "hello world";
console.log(stringValue.toUpperCase());
The code above generates the following result.
toUpperCase()
converts string to upper case.
var stringValue = "hello world";
console.log(stringValue.toUpperCase());
The code above generates the following result.