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,那契 From: https://www.cnblogs.com/wfming/p/16607706.html