How to convert a character to lowercase in JavaScript

2 Answers

0 votes
let ch = 'Z';
 
ch = ch.toLowerCase();
 
console.log(ch);
 
console.log('A'.toLowerCase());


 
/*
 
run:
 
z
a
 
*/

 



answered Jan 10, 2017 by avibootz
edited May 15, 2024 by avibootz
0 votes
let s = "Q";
 
s = s[0].toLowerCase();
 
console.log(s);


 
/*
 
run:
 
q
 
*/

 



answered May 15, 2024 by avibootz

Related questions

...