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));
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/281176.html