PreIncrement
PreIncrement(x)
++xincrements
xby1, returning the new value ofx.
Examples
++a is equivalent to a = a + 1:
>> a = 2>> ++a3
>> a3Implementation status
- ✅ - full supported
PreIncrement(x)
++xincrements
xby1, returning the new value ofx.
++a is equivalent to a = a + 1:
>> a = 2>> ++a3
>> a3