关于null和undefined问题
老师,请问这段代码为什么会显示weather IS nullor undefined?代码如下:
<!DOCTYPE html>
<html>
<head>
<title>undefined和null</title>
<meta charset="utf-8">
</head>
<body>
<script type="text/javascript">
var data={
name:"Adam",
//weather:"sunny",
};
data.weather="sunny";
/*检查变量或属性是否为undefined或者null*/
if (!data.name) {
document.write("name IS null or undefined");
}
else{
document.write("name IS NOT null or undefined");
}
if (!data.weather) {
document.write("weather IS null or undefined");
}
else{
document.write("weather IS NOT null or undefined");
}
</script>
</body>
</html>
13
收起
正在回答 回答被采纳积分+1
2回答
前端小白入门系列课程
- 参与学习 人
- 提交作业 11218 份
- 解答问题 36713 个
从一个不会编程的小白到一个老司机是需要过程的,首先得入门,学习基础知识,然后才能进阶,最后再到精通,本专题是你走进前端世界的不二选择!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星