abs

absは、absoluteの略で絶対値の事を表します。

absの説明図
console.log("数値:" + Math.abs(-100));
console.log("空配列:" + Math.abs([]));
console.log("null:" + Math.abs(null));
console.log("配列:" + Math.abs([1,2,3]));
console.log("文字列:" + Math.abs('string'));
出力結果

数値 : 100
空配列 : 0
null : 0
配列 : NaN
文字列 : NaN