x = 0; //pre-increment ++x; //post-increment x++;
// Decrement let b = 1; b--; //post decrement --b; // pre decrement