How to find the Maximum of Two Numbers in TypeScript


How to find the Maximum of Two Numbers in TypeScript ?

Answer

To find the maximum of two numbers in TypeScript, you can use the Math.max function.



✐ Examples

1 Maximum of Two Numbers

In this example,

  1. We declare two variables a and b and assign values to them.
  2. We use the Math.max function to find the maximum of a and b and store it in a variable named max.
  3. We log the maximum value using console.log.

TypeScript Program

// Maximum of Two Numbers
let a: number = 10;
let b: number = 15;
let max: number = 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 TypeScript language with well detailed examples.




More TypeScript Comparison Operations Tutorials

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