showing results for - "compound assignment operators"
Valentín
05 Sep 2019
1let x = 1;
2x += 1;
3
4console.log(x);
5
6/*
7
8Compound Assignment Operators
9Operator name	Shorthand	Meaning
10Addition assignment	a += b	a = a + b
11Subtraction assignment	a -= b	a = a - b
12Multiplication assignment	a *= b	a = a * b
13Division assignment	a /= b	a = a / b
14
15*/