其他分享
首页 > 其他分享> > 使用JS 递归函数 输出 斐波那契数列 (return 返回值使用时的注意点 )

使用JS 递归函数 输出 斐波那契数列 (return 返回值使用时的注意点 )

作者:互联网

    function aee(i){     if( i == 0 ){         return 0;     }     if ( i == 1 ){         return 1;     }     if( i >= 2){     *** //     return aee(i) = aee(i - 1) + aee(i - 2);           卧槽return  只能是表达式   一定要记住使用原则   ****           return aee( i - 1) + aee ( i - 2);     }     } for( var j = 0 ; j < 10 ; j++){     console.log(aee(j)); }

标签:return,卧槽,JS,斐波,aee,使用,console
来源: https://www.cnblogs.com/wfming/p/16607706.html