Exemplo de pré -incremento em JS
let a = 2;
b = ++a;
// a = 3
// b = 3
Wandering Wolverine
let a = 2;
b = ++a;
// a = 3
// b = 3