Skip to content
Subhajit Sahu edited this page Feb 3, 2021 · 20 revisions

Gets absolute value. 🏃 📼 📦 🌔 📒

Similar: abs, signEqual.


integer.abs(x);
// x: an int32
const integer = require("extra-integer");

integer.abs(-92);
// 92

integer.abs(61);
// 61

integer.abs(-68);
// 68


References

Clone this wiki locally