'POSITIVE_INFINITY' Example : POSITIVE_INFINITY « Javascript Properties « JavaScript Reference

'POSITIVE_INFINITY' Example

    
<html>
<body>
<button onclick="alert(Number.MAX_VALUE);">MAX_VALUE</button>
<button onclick="alert(Number.MIN_VALUE);">MIN_VALUE</button>
<button onclick="alert(Number.NEGATIVE_INFINITY);">NEGATIVE_INFINITY</button>
<button onclick="alert(Number.POSITIVE_INFINITY);">POSITIVE_INFINITY</button>
</body>
</html>

    
      
      








Related examples in the same category

1.'POSITIVE_INFINITY' Syntax and Note
2.'POSITIVE_INFINITY' is applied to