Assignment Operators in JavaScript — a practical guide to JavaScript assignment operators with clear examples you can reuse in real projects.
JavaScript Tutorial Series (18/101). Prefer one article? Read the complete JavaScript tutorial.
Short description
Destructuring assignment is covered later — powerful for objects/arrays.
Assignment
let n = 5;
n += 2; // 7
n *= 3; // 21