const line = readline();
function getLastring(str) {
    return str.split(' ').slice(-1)[0].length
}
console.log(getLastring(line))

思路1

  1. 通过截取找出最后一个单词
  • split() : 返回数组
  • slice() : 返回数组
  1. 计算长度

思路2

const line = readline();
function getLastring(str) {
    const lastLen = str.lastIndexOf(' ')
    if (lastLen < 0 ) return 0 
    return str.length - lastLen - 1
}
console.log(getLastring(line))
  1. 找到最后一个空格的位置
  2. 所有长度 - 空格的位置 - 1 (下标比长度少1)