Skip to content

Instantly share code, notes, and snippets.

@mattonit
Last active January 27, 2020 09:38
Show Gist options
  • Select an option

  • Save mattonit/ff0b85cdff4dd53d3cb8014bb57f954d to your computer and use it in GitHub Desktop.

Select an option

Save mattonit/ff0b85cdff4dd53d3cb8014bb57f954d to your computer and use it in GitHub Desktop.
Where to eat?
const restaurants = [
'McD',
'KFC',
'Burger King',
'Kebab King',
'Marche',
'Chinese (Dw Wschodni)',
'Chinese (Markowska)',
'Chinese (Bao Nam)',
'Amrit Kebab',
'Kebab (Radzyminska)',
'Mucha nie Siada',
'W Oparach Absordu',
'Bobby Burger',
'Green it',
'Papa Diego',
'Papa John\'s',
'Orzo'
];
console.log(restaurants[Math.floor(Math.random() * restaurants.length)]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment