//1.变量声明了但是没赋值 解析器会给一个默认值 就是undefined var a; console.log(a); //2.数组中 某一项没有值 值是undefined var arr = [1, 2, 3]; console.log(arr[10]); //3.形参接收不到值 接收到的就是undefined function fn(a, b) { console.log(b); } fn(1); //4.函数没有返回值 相当于返回了undefined console.log(fn(1, 2)); //5.对象没有这个属性 非要获取这个属性的值 这个属性的值也是undefined var obj = { name: "zs", age: 18 }; console.log(obj.sex); //undefined都是解析器给的默认值 //null一般都是程序员主动赋予的值 var arr = []; arr.push();
相关推荐:
详解vue中使用refs定位dom出现undefined
Javascript中undefined与null的区别详解
php提示undefined index的解决方法
以上就是js中undefined实例解析的详细内容,更多请关注php中文网其它相关文章!