True if this object is equal to the one provided.
True if this object is greater than the one provided.
True if this object is greater than or equal to the one provided.
True if this object is less than the one provided.
True if this object is less than or equal to the one provided.
Generated using TypeDoc
An
IntType
that restricts the number to 32 bits by using anInt32Array
.const a = new Int32(5) console.log(a.toString()) // 5 a.add(10).sub(8) console.log(a.toString()) // 7 const b = new Int32(3) console.log(a.cmp(b)) // 1