Appearance
禁止初始化变量为undefined
在JavaScript中,声明但未初始化的变量默认为undefined的值,显示赋值一个undefined就是多此一举。
可以写成null,和未声明的变量区分开来.
let foo = undefined;
let foo = null;