Number.abs - Prototype JavaScript 框架

Xunxin Prototype API

abs
1.6.0

abs() -> Number

返回当前 Number 对象的绝对值。

Math.abs 的实例方法版本。

样例

Math.abs(-5) //-> 5
(-5).abs() //-> 5 
(5).abs() //-> 5