5.4k views
5 votes
Give three code examples of how to increment the integer j by 1.

User Csmba
by
4.5k points

1 Answer

6 votes

Answer:

(This is for Javascript)

j++;

j + = 1;

j = j + 1;

User Jan Willem Tulp
by
4.5k points