Exemplo de pós -incremento em JS
let x = 3;
y = x++;
// y = 3
// x = 4
Wandering Wolverine
let x = 3;
y = x++;
// y = 3
// x = 4