Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const cities = ['Torino', 'London', 'Dubai', 'London', 'Edinburgh'];
- const uppercaseCities = cities.map(city => shout(city));
- console.log(uppercaseCities);
- // [ 'TORINO', 'LONDON', 'DUBAI', 'LONDON', 'EDINBURGH' ]
- function shout(string) {
- return string.toUpperCase();
- }
- // from https://github.com/matteo-hertel/FPTalk
Advertisement
Add Comment
Please, Sign In to add comment