标签: javascript
一个朋友问我他在求职面试中遇到的这个问题
function canbetrue(x) { return x != x; }
哪个值param将使上述函数返回 true 吗?
param
console.log(canbetrue(param));
答案 0 :(得分:6)
NaN是您想要的...
function canbetrue(x) { return x != x; } console.log(canbetrue(NaN));