Skip to content

Instantly share code, notes, and snippets.

@amandabot
Created April 29, 2020 13:16
Show Gist options
  • Save amandabot/86033bda2292dff779ed4346e490a488 to your computer and use it in GitHub Desktop.
Save amandabot/86033bda2292dff779ed4346e490a488 to your computer and use it in GitHub Desktop.
Asks, "Where's the money?" in randomized casing
function requestMoneyLocation() {
return Object.values(`where's the money?`).reduce((acc, curr) => {
return acc + (Math.random() > 0.5 ? curr.toUpperCase() : curr);
}, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment