Tech
Forums
Jobs
Books
Events
Interviews
Live
More
Learn
Training
Career
Members
Videos
News
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Arithmetic Operations Using TypeScript
WhatsApp
Vijay Prativadi
5y
9.7k
0
4
100
Article
Introduction
Today, in this article let's play around with one of the interesting and most useful concepts in TypeScript, arithmetic operations.
Question: What are the arithmetic operations using TypeScript?
In simple terms "It enables arithmetic operations to be performed using the TypeScript language.".
Step 1:
Create a new TypeScript project in Visual Studio.
Step 2:
The complete code of app.ts looks like this:
class
Arthmetic
implements
IAddition {
public
Add(a: number, b: number): number {
return
a + b;
}
public
Sub(a: number, b: number): number {
return
a - b;
}
public
Mul(a: number, b: number): number {
return
a * b;
}
public
Div(a: number, b: number): number {
return
a / b;
}
}
interface
IAddition {
Add(a: number, b: number): number;
Sub(a: number, b: number): number;
Mul(a: number, b: number): number;
Div(a: number, b: number): number;
}
function
arthemticAdd(arthmetic: Arthmetic) {
return
"Addition Result of 20 and 10 is: "
+ arthmetic.Add(20, 10);
}
function
arthemticSub(arthmetic: Arthmetic) {
return
"Substraction Result of 20 and 10 is: "
+ arthmetic.Sub(20, 10);
}
function
arthemticMul(arthmetic: Arthmetic) {
return
"Multiplication Result of 20 and 10 is: "
+ arthmetic.Mul(20, 10);
}
function
arthemticDiv(arthmetic: Arthmetic) {
return
"Division Result of 20 and 10 is: "
+ arthmetic.Div(20, 10);
}
var
objArthmetic =
new
Arthmetic();
alert(arthemticAdd(objArthmetic));
alert(arthemticSub(objArthmetic));
alert(arthemticMul(objArthmetic));
alert(arthemticDiv(objArthmetic));
}
Step 3:
The complete code of Default.htm looks like this:
<!DOCTYPE html>
<html lang=
"en"
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta charset=
"utf-8"
/>
<title>Arithmetic TypeScript App</title>
<link rel=
"stylesheet"
href=
"app.css"
type=
"text/css"
/>
</head>
<body>
<h1 style=
"text-align: center"
>
Arithmetic TypeScript App</h1>
<div id=
"content"
>
<script src=
"app.js"
></script>
</div>
</body>
</html>
Step 4:
The addition operation output of the application looks like this:
Step 5:
The subtraction operation output of the application looks like this:
Step 6:
The multiplication operation output of the application looks like this:
Step 7:
The division operation output of the application looks like this:
I hope this article is useful to you. I look forward to your comments and feedback. Thanks, Vijay Prativadi
Arithmetic Operations in TypeScript
C#
HTML
TypeScript
Up Next
Ebook Download
View all
TypeScript: Beginner To Advanced
Read by 10.2k people
Download Now!
Learn
View all
MVC Corporation
MVC Corporation is consulting and IT services based company.
Membership not found