Skip to content

Instantly share code, notes, and snippets.

@usmaanalii
Created September 8, 2017 08:01
Show Gist options
  • Save usmaanalii/8f40b02e6691b8967ed2276d0b0ff46f to your computer and use it in GitHub Desktop.
Save usmaanalii/8f40b02e6691b8967ed2276d0b0ff46f to your computer and use it in GitHub Desktop.
let lastHole;
function randomHole(holes) {
const idx = Math.floor(Math.random() * holes.length);
const hole = holes[idx];
if (lastHole === hole) {
return randomHole(holes);
}
lastHole = hole;
return hole;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment