码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 闭包 面试题

时间:2018-03-27 14:28:10      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:func   init   html   round   UNC   body   blog   AC   return   

<!DOCTYPE html>
<html lang="zh">

    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <title>javascript 闭包 面试题</title>
    </head>

    <body>
        <script>
            function fn(n, o) {
                console.log(o);
                return {
                    fn: function(m) {
                        return fn(m, n);
                    }
                };
            }
            var a = fn(0); //undefined
            a.fn(1); //0
            a.fn(2); //0
            a.fn(3); //0
            console.log(------------);
            var b = fn(0).fn(1).fn(2).fn(3); //undefined,0,1,2
            console.log(------------);
            var c = fn(0).fn(1); //undefined,0
            c.fn(2); //1
            c.fn(3); //1
        </script>
    </body>

</html>

后续解释。

JavaScript 闭包 面试题

标签:func   init   html   round   UNC   body   blog   AC   return   

原文地址:https://www.cnblogs.com/mengfangui/p/8656694.html

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