function fibo(n) { var f = []; for (var c = 0; c < n; ++c) { console.log(f.join("")) f.push((c < 2) ? c : f[c-1] + f[c-2]); } return f; }
效果