需要在不使用to-lowercase函数的情况下编写将ABCDE转换为abcde的代码而不使用to-lowercase函数。编写一个返回转换为调用字符串值的函数 小写。 //功能( “ABCDE”); //返回“abcde”
答案 0 :(得分:0)
真的?
addEventListener('load', function(){
function lame(string){
return string.toLowerCase();
}
console.log(lame('THIS is A LaMe Function'));
});

答案 1 :(得分:0)
使用此方法转换
function convert(str) {
var result = ' ';
for (var i = 0; i < str.length; i++) {
var code = str.charCodeAt(i) // check if it's within the range of capital letters
if (code > 64 && code < 91) { // if so, add a new character to the result string // of the character from our code, plus 32
result += String.fromCharCode(code + 32) } else { // otherwise, just add the current character
result += str.charAt(i) } }
return result;
}
这可能会有所帮助