Appearance
禁止使用void操作符
void操作符的作用是返回undefined,过时的老古董语法了。
避免使用void操作符,直接使用undefined。
let foo; void foo;
const foo = undefined;