how to use .map code example
Example 1: javascript map
array.map((item) => {
return item * 2
}
Example 2: javascript map
const myArray = ['Sam', 'Alice', 'Nick', 'Matt'];
const newArray = myArray.map(name => {
return 'My name is ' + name;
});
console.log(newArray);
const anotherArray = myArray.map((value, index) => index + ": " + value);
console.log(anotherArray);
console.log(myArray);
Example 3: how the map function works javascript
const array = [2, 5, 9];
let squares = array.map((num) => num * num);
console.log(array);
console.log(squares);
Example 4: how to use the map method in javascript
const numbers = [1, 2, 3, 4, 5];
const bigNumbers = numbers.map(number => {
return number * 10;
});
Example 5: when to use map
When to use List, Set and Map?
If we need to access elements frequently by using index, then List is a way
to go ArrayList provides faster access if we know index.
If we want to store elements and want them to maintain an order,
then go for List again. List is an ordered collection and maintain order.
If we want to create collection of unique elements and don't want
any duplicate than choose any Set implementation. (HashSet... )
If we want store data in form Key and Value than Map is the way to go.
We can choose from HashMap, Hashtable...