Prev Demo
JavaScript
>
MIN_VALUE Property
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <p>Click the below button to return the smallest possible number in JavaScript.</p> <input type="button" value="MIN_VALUE" onclick="Function()" /> <p id="myId"></p> <script> function Function() { document.getElementById("myId").innerHTML = Number.MIN_VALUE; } </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output