How To Use Number Object MIN_VALUE Property In JavaScript
In this article I am going to explain about Number Object MIN_VALUE Property In JavaScript.
Use MIN_VALUE Property in JavaScript
The number object MIN_VALUE property return the smallest number in JavaScript.
MIN_VALUE method will close the number 0.
It is not allowed the negative value.
All browsers support number object MIN_VALUE property.
Syntax
Example
<!DOCTYPE html>
<html>
<body style ="background-color:Red">
<p id="demo">Display the smallest possible number in JavaScript.</p>
<button onclick="myFunction()">Click here</button>
<script type="text/javascript">
function myFunction()
{
document.getElementById("demo").innerHTML = Number.MIN_VALUE;
}
</script>
</body>
</html>
|
Output1

Output2

Further Readings
You may also want to read these related articles :here
Ask Your Question
Got a programming related question? You may want to post your question here
Programming Answers here