JavaScript max() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript max() Method

❮ JavaScript Math Object

Example

Return the number with the highest value:

Math.max(5, 10);
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The max() method returns the number with the highest value.

Tip: The min() method returns the number with the lowest value.


Browser Support

Method
max() Yes Yes Yes Yes Yes

Syntax

Math.max(n1, n2, n3, ..., nX)

Parameter Values

Parameter Description
n1, n2, n3, ..., nX Optional. One or more numbers to compare


Technical Details

Return Value: A Number, representing the highest number of the arguments, or -Infinity if no arguments are given, or NaN if one or more arguments are not numbers
JavaScript Version: ECMAScript 1

More Examples

Example

Return the number with the highest value:

var a = Math.max(5, 10);
var b = Math.max(0, 150, 30, 20, 38);
var c = Math.max(-5, 10);
var d = Math.max(-5, -10);
var e = Math.max(1.5, 2.5);
Try it Yourself »

❮ JavaScript Math Object