Array.map() Method in JavaScript πŸš€

dev_shubham

Shubham Jadhav

Posted on September 20, 2021

Array.map() Method in JavaScript πŸš€

Hello, guys today we are covering one of the most important topic.
Today we are learning map() method, so let's start today's article.

πŸ‘‰ Article Content
β€’ What is Array.map() method ?
β€’ Syntax of Array.map() method ?
β€’ Use of Array.map() method ?
β€’ Example of Array.map() method ?
β€’ Explanation of example

πŸ‘‰ What is Array.map() method ?
=> The map() method is used for array transformation. It takes another custom function as an argument and on each array item applies that function.

πŸ‘‰ Syntax of Array.map() method ?
=> syntax

πŸ‘‰ Use of Array.map() method ?
=> Map() method used to iterate over an all array item one by one and apply function on each array items.

πŸ‘‰ Example of Array.map() method
=> See following image
Example

πŸ‘‰ Explanation
=> As shown above image we need an array with some values. That's why I am created an array and it's name is 'arr' and stored [1,2,3,4,5] this values.

Now I am using map() method to increase every array item by one.

I used map() method and pass a function and this function takes one argument and this argument hold all the array items.

When this method call all array items iterate one by one and apply function. When array item '1' is pass through a map() method it's simply increment by 1.

πŸ‘‰ Map() method take a function which will be arrows function or normal Js function.

πŸ‘‰ This method works like a loop and it's similar to for and forEach.

πŸ™ Thank you for reading....

πŸ’– πŸ’ͺ πŸ™… 🚩
dev_shubham
Shubham Jadhav

Posted on September 20, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related