Skip to content
On this page

判断字母大小写

TIP

  • 每个字符(包括字母)在计算机中都有一个对应的ASCII码值。

  • 大写字母的ASCII码值范围是65到90(包括65和90)

  • 小写字母的ASCII码值范围是97到122(包括97和122)

判断字母是否是大写字母

javascript
function isLetterUppercase(letter) {
    const ascii = letter.charCodeAt(0);
    return ascii >= 65 && ascii <= 90;
}

判断字母是否是小写字母

javascript
function isLetterLowercase(letter) {
  const ascii = letter.charCodeAt(0);
  return ascii >= 97 && ascii <= 122;
}

MDN上可查看charCodeAt方法的具体描述