<html>
<body>
<h1>JavaScript Numbers</h1>
<h2>The EPSILON Property</h2>
<p>The difference between 1 and the smallest floating point number in JavaScript is:</p>
<p id="demo"></p>
<script>
let x = Number.EPSILON;
document.getElementById("demo").innerHTML = x;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_epsilon by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:11 GMT -->
</html>