JavaScript Math.min() Method
You are Here:
JavaScript Math.min() Method
The Math.min()
method returns the lowest of the given numbers.
Using Number Values
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
var result = Math.min(5, 3, 25, 14);
document.write(result);
</script>
</body>
</html>
Syntax
Math.min(x)
Parameter Values
Value | Type | Explanation |
---|---|---|
x | Required | Specifies a number. |
Return Value
Value | Explanation |
---|---|
Number | Returns the lowest of the given numbers. |
Using String Values
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
var result = Math.min("5", "3", "25", "14");
document.write(result);
</script>
</body>
</html>
Using Spread Operator
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
var myNumber = [5, 3, 25, 14];
var result = Math.min(...myNumber);
document.write(result);
</script>
</body>
</html>
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.