会是这样的吗?
if(variable == undefined) {
还是会这样?
if(variable == "undefined") {
答案 0 :(得分:5)
if(typeof(variable) == 'undefined')
答案 1 :(得分:5)
if (typeof variable == 'undefined')
答案 2 :(得分:1)
在这里使用typeof
operator,如下所示:
if(typeof variable == "undefined") {
答案 3 :(得分:0)
if(variable == undefined) {
答案 4 :(得分:0)
第一个
if (variable == undefined) {}