https://github.com/imelgrat/arraymap-example
Array.map() example
https://github.com/imelgrat/arraymap-example
array array-manipulations array-methods arrays javascript map mapping
Last synced: 10 months ago
JSON representation
Array.map() example
- Host: GitHub
- URL: https://github.com/imelgrat/arraymap-example
- Owner: imelgrat
- Created: 2020-03-31T22:09:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-07T01:24:45.000Z (over 5 years ago)
- Last Synced: 2025-01-20T22:53:13.694Z (11 months ago)
- Topics: array, array-manipulations, array-methods, arrays, javascript, map, mapping
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Array.map() example
The **.map()** method is one of the most commonly used methods in JavaScript. Unlike **forEach()**, the map() method creates a new array with the results of a function call on each element in the array.
Read more at: https://imelgrat.me/javascript/array-object-iteration-javascript/