MathMath.abs()On this pageMath.abs()语法abs(x: number): number;描述返回一个数字的绝对值。传入一个不可转变成数字的值返回 NaN不传入数字返回 NaN示例Math.abs(0.1 + 0.2 - 0.3) <= Number.EPSILON; // trueMath.abs(-2); // 2Math.abs('-1'); // 1Math.abs(null); // 0Math.abs(true); // 1Math.abs(undefined); // NaNMath.abs('yancey'); // NaNMath.abs(); // NaN