lihai 8d6c751f49 feat: push | 2 yıl önce | |
---|---|---|
.. | ||
example | 2 yıl önce | |
test | 2 yıl önce | |
.travis.yml | 2 yıl önce | |
LICENSE | 2 yıl önce | |
index.js | 2 yıl önce | |
package.json | 2 yıl önce | |
readme.markdown | 2 yıl önce |
[].map(f)
for older browsers
var map = require('array-map');
var letters = map([97,98,99], function (c) {
return String.fromCharCode(c);
});
console.log(letters.join(''));
output:
abc
var map = require('array-map')
Create a new array ys
by applying f(xs[i], i, xs)
to each element in xs
at
index i
.
With npm do:
npm install array-map
MIT