js 中什么情况下返回 undefined 值
摘要:
1. 声明变量没有赋值 <script> let num console.log(num) //undefined </script> 2. 访问不存在的属性 <script> const arr = [1, 2, 4] console.log(arr[9]) //undefined const o 阅读全文
posted @ 2022-07-28 21:48 流浪のwolf 阅读(106) 评论(0) 推荐(0) 编辑