Javascript Multiplication( * ) & Division( / )
The multiplication operator (*) perform arithmetic multiplication on numbers (literals or variables).
console.log( 3 * 5);
console.log(-3 * 5);
console.log( 3 * -5);
console.log(-3 * -5);
Output
15
-15
-15
15
-15
-15
15
Division ( / )
The division operator (/) perform arithmetic division on numbers (literals or variables).
console.log(15 / 3);
console.log(15 / 4);
Output
5
3.75
3.75
Decrementing (--)
The decrement operator (--) decrements numbers by one.
var a = 5, // 5
b = a--, // 5
c = a // 4
Output
In this case, b is set to the initial value of a. So, b will be 5, and c will be 4
var a = 5, // 5
b = --a, // 4
c = a // 4
Output
In this case, b is set to the new value of a. So, b will be 4, and c will be 4.