VOOZH about

URL: https://www.geeksforgeeks.org/javascript/javascript-math-min-method/

⇱ JavaScript Math min() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaScript Math min() Method

Last Updated : 15 Jul, 2024

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.


Output
When positive numbers are passed as parameters: 2

Example 2: When negative numbers are passed as parameters. 


Output
Result : -32

Example 3: When no parameters are passed.

Output:

Result : Infinity

Example 4: When NaN is passed as a parameter.

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

  • Chrome 51
  • Edge 15
  • Firefox 54
  • Safari 10
  • Opera 38

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.

Comment