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
- Host: GitHub
- URL: https://github.com/teotimepacreau/array-methods-exercices-day23-of-100daysofcode
- Owner: teotimepacreau
- Created: 2023-06-30T06:43:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-30T06:48:03.000Z (about 3 years ago)
- Last Synced: 2025-03-05T00:29:58.989Z (over 1 year ago)
- Topics: 100daysofcode, 30daysofjavascript, arraymethods, javascript, map, reverse, shift, vanillajs
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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