Skip to content

Instantly share code, notes, and snippets.

@h2ospace
Created March 14, 2013 19:23
Show Gist options
  • Save h2ospace/5164355 to your computer and use it in GitHub Desktop.
Save h2ospace/5164355 to your computer and use it in GitHub Desktop.
Underscore: shuffle
(function() {
var x;
x = _.shuffle([2, 8, 10, 3]);
//x = _([2, 8, 10, 3]).shuffle();
console.log(x);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment