mattlundstrom
9/16/2015 - 7:00 PM

Use Math without "Math"

Use Math without "Math"

Object.getOwnPropertyNames(Math).map(function(p) {
  window[p] = Math[p];
});

// So instead of Math.random(), just use random();