isLetter function Cool trick how to check if the string is a letter and not a space or punctuation Lower and upper cases for letters are different strings But for rest of characters there is no effect, it is the same string 
      function isLetter(char) {
        if (char.toLowerCase() !== char.toUpperCase()) return true
        return false
      }