479,905 views
0 votes
0 votes
Give three code examples of how to increment the integer j by 1.

User Hari Gopal
by
2.6k points

1 Answer

18 votes
18 votes

Answer:

(This is for Javascript)

j++;

j + = 1;

j = j + 1;

User Daniel Vartanov
by
2.9k points