Skip to content

Instantly share code, notes, and snippets.

@st98
Last active August 29, 2015 14:01
Show Gist options
  • Save st98/d9f81740951043adaf25 to your computer and use it in GitHub Desktop.
Save st98/d9f81740951043adaf25 to your computer and use it in GitHub Desktop.
2..pow(4) === 16 とか 2.4.round() === 2 とかそういうの。
'abs acos asin atan atan2 ceil cos exp floor log pow round sin sqrt tan'.split(' ').forEach(function (name) {
var slice = [].slice;
Number.prototype[name] = function () {
return Math[name].apply(null, [this].concat(slice.call(arguments)));
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment