function createProxy() {
const myArray = [Math.random(), Math.random()];
return new Proxy(myArray, {});
}
const myProxy = createProxy();
Run Code Online (Sandbox Code Playgroud)
如何访问这里的target(是myArray)myProxy?
我尝试了很多方法。在Google上搜索了许多博客文章,但没有找到目标的方法:(