Skip to content

Instantly share code, notes, and snippets.

@mattlundstrom
Created September 16, 2015 19:00
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 mattlundstrom/9047b969679d5ec8e5de to your computer and use it in GitHub Desktop.
Save mattlundstrom/9047b969679d5ec8e5de to your computer and use it in GitHub Desktop.
Use Math without "Math"
Object.getOwnPropertyNames(Math).map(function(p) {
window[p] = Math[p];
});
// So instead of Math.random(), just use random();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment