初见Generator
对比两次代码
【初见Generator】function fib(max) {Generator 代码
var
t,
a = 0,
b = 1,
arr = [0, 1];
while (arr.length < max) {
t = a + b;
a = b;
b = t;
arr.push(t);
}
return arr;
}
// 测试:
console.log(fib(5)); // [0, 1, 1, 2, 3]
console.log(fib(10)); // [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
function* fibs() {
let a = 0;
let b = 1;
while (true) {
yield a;
[a, b] = [b, a + b];
}
}
let [first, second, third, fourth, fifth, sixth,seventh] = fibs();
console.log(seventh);
推荐阅读
- 上过大学和没上大学的区别在哪(几张现实对比图告诉你答案)
- 数据分析->分析方法
- 数据技术|一文了解Gauss数据库(开发历程、OLTP&OLAP特点、行式&列式存储,及与Oracle和AWS对比)
- 代码对比工具,我就用这6个
- MyBatis|MyBatis Generator配置
- 有个爱夸人的领导有什么体验
- 迟钝,其实也是一种优势
- 麦当劳与肯德基的运营管理对比分析
- [JS]|[JS] generator版的阴阳谜题
- Flutter|Flutter SwiftUI React 对比