underscore/map

Underscore.js
(function(){
  const s1Array = [2, 4, 6, 8, 10];
  var s1 = _.map(s1Array, function(num){
  	return num * 3;
  });
  console.log(s1);
})();