How to convert a character to uppercase in JavaScript

2 Answers

0 votes
let ch = 'q';
 
ch = ch.toUpperCase();
 
console.log(ch);
 
console.log('g'.toUpperCase());

    
    
/*
run:
    
Q
G
    
*/

 



answered Jan 10, 2017 by avibootz
edited May 18, 2024 by avibootz
0 votes
let s = 'a';
 
s = s[0].toUpperCase()
         
console.log(s);
 
    
   
   
/*
run:
    
A
    
*/

 

 



answered May 18, 2024 by avibootz

Related questions

...