jasonzhangdong

Results 4 comments of jasonzhangdong

这个库废了,都2年没更新了,无法适配kotlin代码。。。。。。

```js var data = []; for (var i = 0; i < 3; i++) { data[i] = function () { console.log(i); }; } data[0](); data[1](); data[2](); ``` 答案是都是 3,让我们分析一下原因: 当执行到...

@coderLius 怎么观察的,我怎么看不到?

```js var scope = "global scope"; function checkscope(){ var scope = "local scope"; function f(){ return scope; } return f; } checkscope()(); ``` 这段代码为什么会是这个执行结果? ECStack.push( functionContext); ECStack.pop(); ECStack.push( functionContext); ECStack.pop();