Appearance
禁止自我赋值
js语法是允许这样操作的,但毫无意义,肯定是手误.
删掉这种无意义的代码
let foo = 'ranwawa'; foo = foo;
let foo = 'ranwawa'; foo = 'zhangsan';