let n = 4 print(--n) // Prints '3', value of n is now 3. print(++n) // Prints '4', value of n is now 4. print(n--) // Prints '4', value of n is now 3. Confusing! print(n++) // Prints '3', value of n is now 4. Also confusing!