An open API service indexing awesome lists of open source software.

https://github.com/teotimepacreau/array-methods-exercices-day23-of-100daysofcode

Array methods exercices from #30daysofjavascript with VanillaJS
https://github.com/teotimepacreau/array-methods-exercices-day23-of-100daysofcode

100daysofcode 30daysofjavascript arraymethods javascript map reverse shift vanillajs

Last synced: about 2 months ago
JSON representation

Array methods exercices from #30daysofjavascript with VanillaJS

Awesome Lists containing this project

README

          

# Array Methods Exercices

- understood the difference between .map() and forEach() method
- used .includes() for first time to verif if the array contains certain letters
- used .filter() for first time
- reverse array
- .slice() with negative index to extract a last portion
- used the spread operator to avoid mutability with certain array methods