Exemple d'incrément avant JS

let a = 2;
b = ++a;

// a = 3
// b = 3
Wandering Wolverine