甜虾
Results
2
comments of
甜虾
参考 https://www.jianshu.com/p/11494478a7e9
```js const proxyArray = arr => { const length = arr.length; return new Proxy(arr, { get(target, key) { key = +key; while (key < 0) { key += length; }...