+ 2
Find the equivalent of this code:
c = b + 1; a = a + b; b = c; c = undefined; a += b++ a += b + 1 a = b + 1 a += ++b
1 Resposta
0
can you show me in a program how you used it?
c = b + 1; a = a + b; b = c; c = undefined; a += b++ a += b + 1 a = b + 1 a += ++b