其他分享
首页 > 其他分享> > JS常见的错误分类

JS常见的错误分类

作者:互联网

 1. xxx is not defined
  - 表示你使用了一个 xxx 变量
  - 你使用的这个变量没有被声名过
2. xxx is not a function
  - 表示你写了一段代码是 xxx()
  - 表示 xxx 这个变量有,但是不是一个函数你把他当作一个函数来调用
3. Cannot set property 'b' of undefined
  - 不能给 undefiend 设置一个 b 属性
  - 证明你写了一段代码 xxx.b = yyy
  - 你写的 b 前面的东西是个 undefiend
4. Cannot read property 'clientWidth' of null
  - 不能从 null 里面读取一个 clientWidth 属性
  - 证明你写了一个 xxx.clientWidth
  - 前面这个 xxx 是一个 null
5. Cannot read property 'clientWidth' of undefiend
  - 不能从 null 里面读取一个 clientWidth 属性
  - 证明你写了一个 xxx.clientWidth
  - 前面这个 xxx 是一个 undefiend
6. Assignment to constant variable
  - 表示你再为一个常量进行从新赋值的操作
7. Cannot access 'num' before initialization
  - 证明你在使用 num 是在你定义之前
  - 并且你的定义一定是使用的 let 或者 const
8. Unexpected token { in JSON at position 16
  - 证明你在执行 JSON.parse() 的时候,解析的不是一个 json 格式的字符串

标签:分类,错误,xxx,JS,clientWidth,property,Cannot,undefiend,null
来源: https://www.cnblogs.com/Listener-wy/p/16223210.html