单项选择题 for(var i=1;i<=12;i+=3){ console.log(i); }打印结果是()
单项选择题 var userName, type = ""; if (typeof(userName) === "undefined") { type = "boolean"; } else if (typeof(userName) === "string" || typeof(userName) === "number") { type = "string" } else { type = "object" } console.log(type); 打印结果是()
单项选择题 var id = "023";if(typeof(id)==="number"){alert("编号用户");}else if(typeof(id)==="string"){alert("随机用户")}else{alert("临时用户")}以上代码的弹出结果是()