Note: Iterables & Array like - leoxiong7289/JS-notebook GitHub Wiki
Iterables - 可迭代对象
- an object which has a Symbol.iterator
for..of
is available
Array-like - 类数组
- an object which has index/length
Array.from work with this two items and transfer them to a real Array
- can deal with surrogate-pair(special chars:
𝒳,😂
)