Skip to content

Math

Constant Description Value
Math.EPSILON Minimum positive number, such that 1 + Math.EPSILON= 1 when working with floating-point numbers 1e-7

Example

JS
let eps = Math.EPSILON;
console.info(eps); // OUTPUT: 1e-7
Last update: 14 August 2025, 18:47