'MAX_VALUE' Example : Math « Javascript Objects « JavaScript DHTML
- JavaScript DHTML
- Javascript Objects
- Math
'MAX_VALUE' 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