Skip to content

Instantly share code, notes, and snippets.

@renatocassino
Created August 7, 2018 16:33
Show Gist options
  • Save renatocassino/3a53a6c98bb33c283a4321b156a78b1c to your computer and use it in GitHub Desktop.
Save renatocassino/3a53a6c98bb33c283a4321b156a78b1c to your computer and use it in GitHub Desktop.
2048-getRandomIndex.js
const getRandomIndex = (zeros) => {
return zeros[parseInt(Math.random() * zeros.length)];
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment