- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2小时前关门了。
Improve this question
我想在返回null的情况下返回false,但是即使返回null,它也会一直返回true。
hello.json.
{
"hello": null
}
or
{
"hello" : {
id: 1,
hi: 'hi'
}
}
console.log(hello === null ? false : true)
hello值输出为空值,我想返回false,该怎么办?console.log((hello === null ? 'false' : 'true'))
如果hello为空,我预期结果为false,但结果为true。
4条答案
按热度按时间vddsk6oq1#
你必须传递obj.key
8yparm6h2#
使用三元运算符
如果值不为,则将计算为true:
g52tjvyc3#
您正在创建一个对象,但访问错误,您需要访问对象的值,如下所示:
hmmo2u0o4#
如果hello的值为null,它将返回false,因此这样做没有意义。