forked from bellshade/Javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharithmeticOperation.js
43 lines (35 loc) · 906 Bytes
/
arithmeticOperation.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//=== Operasi Penjumlahan ===//
console.log(10 + 5);
// menghasilkan 15
/**
* contoh perbedaan operator penjumlahan dan concatenation. semua Integer
* akan berubah menjadi string apabila bertemu dengan
* concatenation dan akan menghasilkan string juga.
*/
console.log(3 + 3); // 6
console.log(3 + "3"); // "33"
console.log(3 + 3 + "3"); // "63"
console.log(3 + "3" + 3); // "333"
//=== Operasi Pengurangan ===//
console.log(7 - 2);
// menghasilkan 5
//=== Perkalian ===//
console.log(10 * 5);
// menghasilkan 50
//=== Pembagian ===//
console.log(8 / 4);
// menghasilkan 2
//=== Modulus ===//
console.log(7 % 2);
// output 1
//=== Eksponen ===//
console.log(3 ** 3);
// menghasilkan 3 * 3 * 3 = 27
//=== increment ===//
let x = 10;
console.log(x++, x++, x++, x++);
// menghasilkan 10, 11, 12, 13
//=== Decrement ===//
let y = 5;
console.log(y--, y--, y--, y--);
// menghasilkan 5, 4, 3, 2