摘要:
以斐波那契数列为例 1, 1, 2, 3, 5, 8 。。。。。 function fb ( n ) { if (n<=0) {return 1}; return fb(n-1) + fb(n-2) } 优化后的尾递归 function fb(n , ac1=1, ac2 = 1) { if ( n 阅读全文
摘要:
例如 : 将函数的 arguments参数转成数组格式 es5: [].slice.call(arguments) Array.prototype.slice.call(arguments) es6: Array.from(arguments) 能将具有 Iterator接口的数据格式(Set, M 阅读全文