Array Iterators

Array Iterators

  • Looping though lists is a common task is programming

  • Earlier in the course we reviewed loops suchs as while, do..while and for loops

  • JavaScript also offers to built-in array methods (also known as iterators or iterator methods) which make looping easier when working with arrays

  • Iterator methods called on arrays to manipulate elements and return values

  • Let’s review some of the most common iterator methods: