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 => city.toUpperCase());
- console.log(uppercaseCities);
- // [ 'TORINO', 'LONDON', 'DUBAI', 'LONDON', 'EDINBURGH' ]
- //taken from https://github.com/matteo-hertel/FPTalk
Advertisement
Add Comment
Please, Sign In to add comment