How to find the Minimum of Three Numbers in JavaScript


How to find the Minimum of Three Numbers in JavaScript ?

Answer

To find the minimum of three numbers in JavaScript, you can use the `Math.min` function.



✐ Examples

1 Find Minimum of Three Numbers

In this example,

  1. We declare three variables a, b, and c with the numbers to compare.
  2. We use the `Math.min` function to compare the numbers and get the minimum.

JavaScript Program

let a = 5;
let b = 8;
let c = 3;
let min = Math.min(a, b, c);
console.log(`Minimum of three numbers is: ${min}`);

Output

Minimum of three numbers is: 3

Summary

In this tutorial, we learned How to find the Minimum of Three Numbers in JavaScript language with well detailed examples.




More JavaScript Comparison Operations Tutorials

  1. How to find the Maximum of Two Numbers in JavaScript ?
  2. How to find the Minimum of Two Numbers in JavaScript ?
  3. How to find the Maximum of Three Numbers in JavaScript ?
  4. How to find the Minimum of Three Numbers in JavaScript ?