wie man ein absolutes in JS bekommt

var value = Math.abs(-10);
// value returns 10
Ill Impala