ls

Results 1 comments of ls

如下场景: ``` // 尾调用 function f(x){ return g(x); } ``` 在chrome中跑了下,那个控制台 -> Sources -> Call Stack中观察到,f(x) 和g(x)都在stack中,并没有出现如下这种情况啊 ``` // 伪代码 ECStack.push( functionContext); ECStack.pop(); ECStack.push( functionContext); ECStack.pop(); ```