js 往原型上添加方法

102 阅读1分钟

往一个数组上添加一个方法 hello

1、不影响 length

2、不影响其他数组,只有该数组能调用

3、不污染 Array.prototype

4、不能使用 __proto__ (已被废弃)