Skip to content

Instantly share code, notes, and snippets.

@ivolivares
Last active December 23, 2015 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ivolivares/6566040 to your computer and use it in GitHub Desktop.
Save ivolivares/6566040 to your computer and use it in GitHub Desktop.
"Perfecto" random de un array.
var arr = [0,1,2,3,4,5,6,7,8,9], // Example array
rand = Math.floor(Math.random() * arr.length); // Formula, where "arrr" = "n" elements.
// Show result
console.log(rand);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment