Saturday, October 18, 2025
HomeLanguagesJavascriptJavaScript Math min() Method

JavaScript Math min() Method

The JavaScript Math min( ) Method is used to return the lowest-valued number passed in the method. The Math.min() method returns NaN if any parameter isn’t a number and can’t be converted into one. The min() is a static method of Math, therefore, it is always used as Math.min(), rather than as a method of a Math object created. 

Syntax:

Math.min(value1, value2, ...)

Parameters: This method accepts a single parameter that can be used n number of times as mentioned above and described below:

  • value: These values are sent to math.min() method for finding the largest.

Return Value: The Math.min() method returns the smallest of the given numbers.

Example 1: Below are examples of the Math min() Method.

javascript




console.log("When positive numbers are passed" +
    " as parameters: " + Math.min(10, 32, 2));


Output

When positive numbers are passed as parameters: 2

Example 2: When negative numbers are passed as parameters. 

javascript




console.log("Result : " + Math.min(-10, -32, -1));


Output

Result : -32

Example 3: When no parameters are passed.

javascript




console.log("Result : " + Math.min());


Output:

Result : Infinity

Program 3: When NaN is passed as a parameter.

javascript




console.log("Result : " + Math.min(10,2,NaN));


Output:

Result : NaN

We have a complete list of Javascript Math Objects methods, to check those please go through this Javascript Math Object Complete reference article.

Supported Browsers:

  • Google Chrome 1 and above
  • Firefox 1 and above
  • Opera 3 and above
  • Safari 1 and above

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS