Number-3

 

In this example, Number.MIN_VALUE will print the maximum value of number. See the code snippet:

 
 
 
<!DOCTYPE html> <html> <head> <title>Welcome to LearnKode - A code learning platform</title> </head> <body> <button onclick="smallestNumber()">Show the smallest number</button> <p id="sample"></p> <script> function smallestNumber() { document.getElementById("sample").innerHTML = Number.MIN_VALUE; } </script> </body> </html>
Output