How to find the Minimum of Two Numbers in JavaScript - Step by Step Examples
How to find the Minimum of Two Numbers in JavaScript ?
Answer
To find the minimum of two numbers in JavaScript, you can use the Math.min function.
✐ Examples
1 Minimum of Two Numbers
In this example,
- We declare two variables
a
andb
and assign values to them. - We use the
Math.min
function to find the minimum ofa
andb
. - We log the minimum value to the console.
JavaScript Program
// Minimum of Two Numbers
let a = 10;
let b = 15;
let min = Math.min(a, b);
console.log(`Minimum of ${a} and ${b} is: ${min}`);
Output
Minimum of 10 and 15 is: 10
Summary
In this tutorial, we learned How to find the Minimum of Two Numbers in JavaScript language with well detailed examples.