能否返回true函数canbetrue(x){return x!= x; }

时间:2018-10-11 09:57:16

标签: javascript

一个朋友问我他​​在求职面试中遇到的这个问题

function canbetrue(x) {
return x != x;
}

哪个值param将使上述函数返回 true 吗?

console.log(canbetrue(param));

1 个答案:

答案 0 :(得分:6)

NaN是您想要的...

function canbetrue(x) {
return x != x;
}
console.log(canbetrue(NaN));