Slide 30
Slide 30 text
- Comparison
- == (===), != (!==), <, >, <=, >=
- Boolean operators
- &&, || (short-circuit)
- Numeric operators
- +, -, *, /, %, ++, --
- Bitwise operators
- &, |, ~, ^, <<, >>
- String concatenation
- Mind that + is addition for numbers and concatenation for strings!
var str = "two " + "words";
Operators
https://www.w3schools.com/jsref/jsref_operators.asp