Skip to content

Instantly share code, notes, and snippets.

@jdibiccari
Created May 27, 2014 13:22
Show Gist options
  • Save jdibiccari/e522fa17a531554f5cac to your computer and use it in GitHub Desktop.
Save jdibiccari/e522fa17a531554f5cac to your computer and use it in GitHub Desktop.
blog_post_4
Number.prototype.negMod = function(n) {
return ((this%n)+n)%n;
};
//Where 'this' is the number we are taking modulus of
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment