可迭代接口 Iterable
Iterable分析const obj = { [Symbol.iterator]: function(){ return{ next: function(){ return{ value: 'jack', done: true } } } }}1.最外层对象实现