Other Iterators

Other Iterators

  • There are many other built-in iterator methods, a complete list can be found on MDN’s Array iteration methods list

  • As developer, you will be working with arrays of data on a constant basis; which means you’ll be visiting the documentation often to look up array methods you may not have used before

  • Let’s get some practice “looking things up”


Exercise

Visit the MDN Array Documentation and find the appropriate iterator method that will allow you to sort the list of words found in the words array in descending alphabetical order

JS Bin on jsbin.com