Answers for "array.map explanation"

24

array map javascript

const array1 = [1, 4, 9, 16];

// pass a function to map
const map1 = array1.map(x => x * 2);

console.log(map1);
// expected output: Array [2, 8, 18, 32]
Posted by: Guest on November-25-2019
0

array map

let numbers = [1, 2, 3, 4]
let filteredNumbers = numbers.map(function(_, index) {
  if (index < 3) {
     return num
  }
})
// index goes from 0, so the filterNumbers are 1,2,3 and undefined.
// filteredNumbers is [1, 2, 3, undefined]
// numbers is still [1, 2, 3, 4]
Posted by: Guest on April-24-2021
-3

map() Array Method in Javascript

var drinks = [“coffee soda”, “tea”, “whiskey”];

var coldDrinks = drinks.map(function(drink) {
    return ‘iced ’ + drink;
});

// [‘iced coffee soda’, ‘iced coffee’, ‘iced whiskey’]
Posted by: Guest on July-01-2021

Browse Popular Code Answers by Language