Contoh kenaikan pra di JS
let a = 2;
b = ++a;
// a = 3
// b = 3
Wandering Wolverine
let a = 2;
b = ++a;
// a = 3
// b = 3