add 1 to integer nodejs code example Example: javascript decrement // Increment let a = 1; a++; ++a; // Decrement let b = 1; b--; --b;