小程序 0和空的判断

发布于 7 年前作者 jing593697 次浏览最后编辑 7 年前来自 ask

小程序 0和空的判断,问题列在这,想看看大家怎么判断的

3 回复
iyin
iyin1 楼6 年前

你的__空__指的是 ‘’ 还是 undefined 还是 null ?

yinguiying
yinguiying2 楼6 年前

if(res==null || res==0 || res==" "){}

xiuyinggong
xiuyinggong3 楼5 年前

let arg = 0, arg2 = null; if(!!arg2){console.log(true)} if(!!arg){console.log(true)}