I\'m doing some testing in chrome debugger tool, I find some strange numbers are printed below the texts output by console.log:
I didn\'t log in the console, why are the
The Chrome console logs the value of the last expression executed. In the first example above, the last line, i++; logs 9. In the second example, i+=1; logs 10.
i++;
9
i+=1;
10