ES6 – Iterable protocol

Hi, any object that implement the iterable protocol is known as an iterable. An object need to provide the @@iterator method: must have the Symbol.iterator symbol as a property key. The @@iterator method must return an iterator object. Result: By Cristina Rojas.