Convert String To Lowercase Jquery Code Example


Example 1: javascript lowercase string


var str = "My Big Boy!"
var res = str.toLowerCase(); //res is "my big boy!"

Example 2: javascript lowercase string


var str = "ExaMple";
var res = str.toLowerCase();
output res -> "example"

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy