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