【轉載】大部分人都會作錯的經典JS閉包面試題

原文連接http://www.cnblogs.com/xxcanghai/p/4991870.htmlhtml

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的輸出分別是什麼?

  

答案spa

//a: undefined,0,0,0
//b: undefined,0,1,2
//c: undefined,0,1,1
相關文章
相關標籤/搜索