//斐波那契数列,函数递归 function feibo(n) { if (n < 3) { return 1; } else { return feibo(n - 1) + feibo(n - 2); }; };
用递归去做