编写函数,求字符串中小写字母的个数。
    /**
    *
    * 功能:求字符串中小写字母的个数
小写字符串是什么    *
    * @param {String} str 输入的字符串
    * @return {Number} 小写字母的个数
    */
    function countLowerCase(str) {
    let count = 0;
    for (let i = 0; i < str.length; i++) {
    let code = str.charCodeAt(i);
    if (code >= 97 && code <= 122) {
    count++;
    }
    }
    return count;
    }。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。