interation protocols : 순회(iteration)를 하기 위해서 따라야 하는 규칙
interation protocols 을 따르면 for ... of , spread 연산자에서 사용이 가능하다.
기본 자바스크립트 자료구조에서 array, string, map, set이 interation protocols 을 따른다
interation protocols에는 다음 두 가지 프로토콜이 있다.
iterable protocol - iterator를 리턴하는 [Symbol.iterator]()를 가져야 한다
iterator protocol - {value, done} 객체를 리턴하는 next()를 가져야 한다
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols