Skip to content
Subhajit Sahu edited this page May 17, 2020 · 26 revisions

Updates values based on map function. 🏃 [:vhs:] 📦 🌔 📒

iterable.map(x, fn, [ths]);
// x:   an iterable
// fn:  map function (v, i, x)
// ths: this argument
const iterable = require('extra-iterable');

var x = [1, 2, 3, 4];
[...iterable.map(x, v => v * 2)];
// [ 2, 4, 6, 8 ]

references

Clone this wiki locally