Demystifying Iterables by implementing a python like range function

Vivek Nayyar
5 min readMay 26, 2021
Photo by Rich Tervet on Unsplash

With ES6, we got introduced to the concept of Iterables. Iterating over an array using a for-in loop or a for-of loop is not new to us.

We have all done something like this at least once in our codebase:

--

--