Constants
maxValue
RES
let maxValue: intThe largest positive number represented in JavaScript.
See Number.MAX_VALUE
on MDN.
Examples
RESConsole.log(Int.Constants.maxValue)
minValue
RES
let minValue: intThe smallest positive number represented in JavaScript.
See Number.MIN_VALUE
on MDN.
Examples
RESConsole.log(Int.Constants.minValue)