tobym76

improved-mapper-JS

Nov 24th, 2018
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const cities = ['Torino', 'London', 'Dubai', 'London', 'Edinburgh'];
  2.  
  3. const uppercaseCities = cities.map(city => shout(city));
  4.  
  5. console.log(uppercaseCities);
  6. // [ 'TORINO', 'LONDON', 'DUBAI', 'LONDON', 'EDINBURGH' ]
  7.  
  8. function shout(string) {
  9.   return string.toUpperCase();
  10. }
  11.  
  12. // from https://github.com/matteo-hertel/FPTalk
Advertisement
Add Comment
Please, Sign In to add comment