gpt4 book ai didi

javascript - 检查 token 是否可用

转载 作者:行者123 更新时间:2023-11-28 11:35:04 25 4
gpt4 key购买 nike

不起作用的代码: console.clear();

try {
test(token);
}
catch(err) {
console.log(err.toString());
}

if(typeof token === undefined) {
console.log("token exists");
}

test(token);

if(token) {
console.log("token exists");
}

function test(o) {
if(o) {
console.log("token exists");
}
}

JSBin: http://jsbin.com/qanuk/1/edit?html,js,console,output

问题:如何测试“ token ”是否存在,如果不存在,则不会引发引用错误?

我的所有三个示例都会抛出ReferenceError: token 未定义

最佳答案

用途:

if(typeof token === 'undefined')
  • typeof 是关键字,而不是函数
  • typeof 总是返回一个字符串

关于javascript - 检查 token 是否可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23920444/

25 4 0
文章推荐: javascript - 正则表达式中的破折号
文章推荐: swift - 如何为动态增长的 UITextView 设置最小高度?
文章推荐: javascript - 如何使用 jQuery 访问动态创建的