HJ001
计算字符串最后一个单词的长度,单词以空格隔开。
输入一行,代表要计算的字符串,非空,长度小于5000。
输出一个整数,表示输入字符串最后一个单词的长度。
输入
hello nowcoder
输出
8
let str = "his guide assumes that you have already read the Composition API Introduction and Reactivity Fundamentals"
function getLastLength(e){
if(e.length ===0){
return 0
}
const arr = e.split(' ')
return arr[arr.length - 1].length
}
console.log(getLastLength(str)); //12