【转载】大部分人都会做错的经典JS闭包面试题

原文链接http://www.cnblogs.com/xxcanghai/p/4991870.html

function fun(n,o) {
  console.log(o)
  return {
    fun:function(m){
      return fun(m,n);
    }
  };
}
var a = fun(0);  a.fun(1);  a.fun(2);  a.fun(3);//undefined,?,?,?
var b = fun(0).fun(1).fun(2).fun(3);//undefined,?,?,?
var c = fun(0).fun(1);  c.fun(2);  c.fun(3);//undefined,?,?,?
//问:三行a,b,c的输出分别是什么?

  

答案

//a: undefined,0,0,0
//b: undefined,0,1,2
//c: undefined,0,1,1

  

原文地址:https://www.cnblogs.com/yanwei-sun/p/5251837.html