码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2016-03-07 22:09:08      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:

原文链接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

  

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

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!