@extra-array/map
v2.10.19
Published
Updates values based on map function.
Downloads
97
Readme
Updates values based on map function. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
Alternatives: map, map$. Similar: map, filter, reject, reduce, accumulate.
This is part of package extra-array.
array.map(x, fm);
// x: an array
// fm: map function (v, i, x)
const array = require("extra-array");
var x = [1, 2, 3, 4];
array.map(x, v => v * 2);
// [ 2, 4, 6, 8 ]