You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: JavaScript Interview Programs/Sum of Numbers.js
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,14 @@
1
-
// Common Ways to Add Numbers In JavaScript
1
+
// ***************************************************** Common Ways to Add Numbers In JavaScript *************************************************************************
2
2
3
3
// 1. Normal Variable Addition (Direct Way)
4
-
consta=10;
5
-
constb=20;
6
-
constsum=a+b;
7
-
console.log("Addition of two number:",sum);
8
-
// output:
9
-
// Addition of two number: 30
4
+
consta=10;
5
+
constb=20;
6
+
constsum=a+b;
7
+
console.log("Addition of two number:",sum);
8
+
// output:
9
+
// Addition of two number: 30
10
10
11
11
// 2. Using Function()
12
-
13
12
// Function to calculate the sum of two numbers using a temporary variable:
0 commit comments