Answers for "Array to map"

0

map to array javascript

let map = new Map().set('a', 1).set('b', 2),
    array = Array.from(map, ([name, value]) => ({ name, value }));

console.log(array);
Posted by: Guest on July-19-2021
11

array map

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 December-22-2019
0

javascript converting an array into a map

const arr = ['a', 'b', 'c', 2, 3, 4];
const nwMap = new Map([...arr.entries()]);
Posted by: Guest on July-12-2021
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
0

map a property from array of objects javascript

var result = objArray.map(function(a) {return a.foo;});
Posted by: Guest on July-29-2020

Browse Popular Code Answers by Language