How to find the Minimum of Two Numbers in TypeScript


How to find the Minimum of Two Numbers in TypeScript ?

Answer

To find the minimum of two numbers in TypeScript, you can use the Math.min function.



✐ Examples

1 Minimum of Two Numbers

In this example,

  1. We declare two variables a and b and assign values to them.
  2. We use the Math.min function to find the minimum of a and b.
  3. We log the minimum value to the console.

TypeScript Program

// Minimum of Two Numbers
let a: number = 10;
let b: number = 15;
let min: number = 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 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 ?