Created
January 27, 2019 12:25
-
-
Save zprima/0ddf9a89bada3d46c787bf9ace71f605 to your computer and use it in GitHub Desktop.
medium_p2_c3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const namedPlaces = [ | |
"Junk Junction", | |
"Haunted Hills", | |
"Pleasant Park", | |
"Lazy Links", | |
"Risky Reels", | |
"Wailing Woods", | |
"Tomato Temple", | |
"Lonely Lodge", | |
"Retail Row", | |
"Dusty Divot", | |
"Loot Lake", | |
"Tilted Towers", | |
"Snoby Shores", | |
"Viking Village", | |
"Greasy Grove", | |
"Shifty Shafts", | |
"Salty Springs", | |
"Fatal Fields", | |
"Paradise Palms", | |
"Lucky Landing", | |
"Flush Factory" | |
]; | |
document.getElementById("btn-jumper").addEventListener('click', function () { | |
const placeToLand = namedPlaces[Math.floor(Math.random() * namedPlaces.length)]; | |
document.getElementById("place-to-land").textContent = placeToLand; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment