我正在编写一个函数,该函数将返回或关于输入字符串是否按字母顺序排列。我得到了,但不确定我错过了什么truefalseundefined
function is_alphabetic(str) {
let result = true;
for (let count = 1, other_count = 2; count >= str.length - 1, other_count >= str.length; count++,
other_count++) {
if (str.at[count] > str.at[other_count]) {
let result = false
}
return result
}
}
console.log(is_alphabetic('abc'));
胡子哥哥
当年话下
慕运维8079593
隔江千里
相关分类