Skip to content

Instantly share code, notes, and snippets.

@afahy
Created October 10, 2009 22:03
Show Gist options
  • Save afahy/207180 to your computer and use it in GitHub Desktop.
Save afahy/207180 to your computer and use it in GitHub Desktop.
Random #
(function($){
$.extend($, {
// expects n == positive; returns 0 to n exclusive
rand: function(n){
return Math.floor(n * Math.random());
}
})
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment