Skip to content

Instantly share code, notes, and snippets.

@jakubbarczyk
Created September 4, 2021 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakubbarczyk/aba4ecc8022082b220cc2bc9ac6098eb to your computer and use it in GitHub Desktop.
Save jakubbarczyk/aba4ecc8022082b220cc2bc9ac6098eb to your computer and use it in GitHub Desktop.
const cities = new Map([
['MG', 'Belzante'],
['SP', 'Sampa']
]);
const getCity = city => cities.get(city) ?? 'Not found';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment