lostm1nd / HackBulgaria

Projects related to the courses at HackBulgaria
1 stars 0 forks source link

pluck with map #1

Closed RadoRado closed 10 years ago

RadoRado commented 10 years ago

Просто като heads-up, https://github.com/lostm1nd/HackBulgaria/blob/master/FrontEndJS/week1/pluck-func/pluck.js е много ярък пример за ползване на map:

var pluck = function(property, arr) {
  return arr.map(function(item) {
      return item[property];
  });
};