使用JavaScript测试字符串中的字母是大写还是小写

    // 使用JS测试字符串中的字母是大写还是小写
    let mes1 = 'a';
    let mes2 = 'A';
    if(mes1 == mes1.toLowerCase()){
        console.log('lowerCase')  //小写
    }
    if(mes1 == mes1.toUpperCase()){
        console.log('upperCase')  //大写
    }

你可能感兴趣的:(JS,javascript,前端,开发语言)