The Number.EPSILON property of the Number object represents the difference between 1 and the smallest floating point number greater than 1.
Syntax
Its Syntax is as follows
Number.EPSILON
Example
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<script type="text/javascript">
var result = Number.EPSILON;
document.write("Value of the epsilon : " + result);
</script>
</body>
</html>Output
Value of the epsilon: 2.220446049250313e-16