Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - How to change uppercase letters of jquery string into lowercase letters?
How to change uppercase letters of jquery string into lowercase letters?
Method of converting js characters into lowercase: to lowercase ()

Method of converting js characters into uppercase: to uppercase ()

Examples are as follows

var a = " aBcD

a = a . tolowercase();

Alert (1);

The hint is abcd.

var a = " aBcD

a = a . toupper case();

Alert (1);

The hint is ABCD.