<html>
<body>
<p>Converting Infinity to other types:</p>
<p id="demo" style="font-family:courier"></p>
<script>
var x = Infinity;
document.getElementById("demo").innerHTML =
"Number : " + Number(x) + "<br>" +
"String : " + String(x) + "<br>" +
"Boolean: " + Boolean(x);
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_type_convert_infinity by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:00:19 GMT -->
</html>