# 常忘记的
# 数组Array
/** ------ 1.删除 ------ */
pop() // 末尾的元素
shift() // 最前面(头部)的元素
splice(pos, n) // 移除
/** ------ 2.添加 ------ */
unshift() // 添加元素到数组的头部
/** ------ 3.拷贝 ------ */
slice() // 兼容问题
// 静态方法
Array.isArray(obj)
Array.prototype.concat()
Array.prototype.filter()
Array.prototype.find()
Array.prototype.includes()
Array.prototype.some()
# 对象 Object
// 复制
Object.assign()
// 冻结
Object.freeze()
Object.is()
// 返回对象的key 组成数组
Object.keys()
Object.values()