How to find the Minimum of Three Numbers in TypeScript - Step by Step Examples
How to find the Minimum of Three Numbers in TypeScript ?
Answer
To find the minimum of three numbers in TypeScript, you can use the `Math.min` function as in JavaScript.
✐ Examples
1 Find Minimum of Three Numbers
In this example,
- We declare three variables
a
,b
, andc
with the numbers to compare. - We use the `Math.min` function to compare the numbers and get the minimum.
TypeScript Program
let a: number = 5;
let b: number = 8;
let c: number = 3;
let min: number = 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 TypeScript language with well detailed examples.