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

js 递归

时间:2015-01-18 00:48:53      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

    <script>
    //递归
    function test(n) {
        if (n == 1) {
            return 1
        }
        console.log(n)
        return n * test(n - 1)
    }
    console.log(test(3))
    </script>

 

js 递归

标签:

原文地址:http://www.cnblogs.com/liujin0505/p/4231289.html

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