当前位置 : 主页 > 网络编程 > JavaScript >

Math api polyfill

来源:互联网 收集:自由互联 发布时间:2021-06-28
Math.trunc Math.trunc = Math.trunc || function(x) { return x 0 ? Math.ceil(x) : Math.floor(x);}Math.sign = Math.sign || function(x) { x = +x; // convert to number if (x === 0 || isNaN(x)) { return x; } return x 0 ? 1 : -1;}Math.cbrt = Math.
Math.trunc
Math.trunc = Math.trunc || function(x) {
    return x < 0 ? Math.ceil(x) : Math.floor(x);
}

Math.sign = Math.sign || function(x) {
  x = +x; // convert to number
  if (x === 0 || isNaN(x)) {
    return x;
  }
  return x > 0 ? 1 : -1;
}

Math.cbrt = Math.cbrt || function(x) {
  var y = Math.pow(Math.abs(x), 1/3);
  return x < 0 ? -y : y;
}
上一篇:Number api polyfill
下一篇:express 跨域访问
网友评论