ES6 - Number.EPSILON



This property represents the smallest interval between two representable numbers.

Example

var interval = Number.EPSILON
console.log(interval)

Output

2.220446049250313e-16
Advertisements