반복 가능한 객체(iterable object)는 for...of 구문과 함께 ES2015에서 도입되었습니다.
Iterable은 객체에는 적용되지 않습니다. 즉, for of도 객체에는 사용할수없다.
let a = {c:10,b:20} for(let p of a){console.log(p)}// Uncaught TypeError: a is not iterable