码迷,mamicode.com
首页 > 其他好文 > 详细

高阶函数 实现sum(2)(3) 柯里化

时间:2018-11-09 17:10:18      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:app   pre   typeof   apply   fun   ack   asc   size   add   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>高阶函数 实现sum(2)(3)</title>
    </head>
    <body>
        <script type="text/javascript">
            function add() {
                var args = [].slice.call(arguments);

                var fn = function() {
                    var arg_fn = [].slice.call(arguments);
                    return add.apply(null, args.concat(arg_fn));
                }

                fn.valueOf = function() {
                    return args.reduce((a, b) => a + b);
                }
                return fn;
            }
            let s = add(1)(2)(3);
            // function
            console.log(typeof s);
            // 6
            console.log(Number(s))
        </script>

    </body>
</html>

 

高阶函数 实现sum(2)(3) 柯里化

标签:app   pre   typeof   apply   fun   ack   asc   size   add   

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

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