var userinput = prompt("Hello. Please enter a statement and I will repeat the last word");
if(typeof userinput !== "string"){
console.log("This is not a string.");
}
我是一个完整的新手,我只是想制作一个简单的脚本来重复您输入的语句的最后一个单词。我添加了这个保护措施,如果你不输入字符串,它会显示一条消息,但是每当我用数字测试代码时,它只是忽略这部分并仍然执行 else 语句,它是找到最后一个的代码单词。我不明白为什么这种保护措施不起作用。
非常感谢一些帮助。谢谢