📜  从数字中删除负号 javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:53.799000             🧑  作者: Mango

代码示例2
Math.abs('the negative number')
Math.abs(-4)//returns 4
Math.abs(4)//returns 4