capint
5/14/2017 - 12:39 PM

MERN >> ES2015 >> map

MERN >> ES2015 >> map

const continents = ['Africa', 'America', 'Asia', 'Australia', 'Europe'];
//ES2015
const message = continents.map(c => `Hello ${c}!`).join(' ');

//<=> ES5
var message = continents.map(function (c) {
  return 'Hello ' + c + '!';
}).join(' ');