Appearance
禁止未使用的变量
未使用的变量会增加代码的阅读难度,可能会引起误解。就问你碍眼不碍眼。
删除未使用的变量。
let foo = 520; console.log(520);
console.log(520);