Image not visible
Chapter - 1 : Arithmetic Operations

#1 Add 2 numbers

It's very easy to add 2 numbers, just enter 2 + 3 in the following editor.

#2 Subtract numbers

Let's perform subtraction as our next task, just enter 32 - 23 in the following editor.

#3 Multiply Numbers with JS

Now it's the time for multiplication, just type 6 * 9 in the following editor.

#4 Divide Numbers with JS

Now it's the time for Divide, just type 20 / 5 in the following editor.

#5 Modulo with JS

For modulo operation, just type 10 % 3 in the following editor.

#1 Add 2 numbers

It's very easy to add 2 numbers, just enter following code in the terminal
var a = 2
// declare a variable a with value 2
var b = 3 // declare a variable b with value 3
var c = a + b // declare a variable c and store addition of a and b in it
console.log(c) // print the result on the console