一.ES5中的类
1. 让属性不可枚举,即让属性不被遍历到。Object.defineProperties();
2. 定义不可变的类:Object.create();
3. 封装对象状态:即将状态写在全局数组中。