Skip to content

Instantly share code, notes, and snippets.

@joeromero
Created September 26, 2014 15:20
Show Gist options
  • Save joeromero/608bf77a34b999ed9991 to your computer and use it in GitHub Desktop.
Save joeromero/608bf77a34b999ed9991 to your computer and use it in GitHub Desktop.
ranDoc = function(min, max) {
var rand = Math.floor(Math.random() * (max - min + 1)) + min;
return rand;
}
randomFromCol = function(C) {
return function() {
c = C.find().fetch();
i = ranDoc(0, c.count())
return c[i]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment