how to check if a character is a letter in javascript code example
Example 1: how to make a char uppercase in java
char q = Character.toUpperCase('d');
Example 2: check if something is a letter in js
string.charAt(1).toUpperCase() !== string.charAt(1).toLowerCase()