JS Operators
Arithmetic
| Op | Meaning |
|---|---|
+ | Add / concat |
% | Remainder |
** | Exponent |
Comparison
Always use === (strict) not ==.
| Op | Meaning |
|---|---|
+ | Add / concat |
% | Remainder |
** | Exponent |
Always use === (strict) not ==.
let a=10,b=3;
console.log(a+b); // 13
console.log(a%b); // 1
console.log(a**b); // 1000
console.log(5==='5'); // false (strict)
More in JavaScript