简体   繁体   中英

What's the meaning of the numbers printed below the message of console.log?

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 they there? what are these numbers? what does it mean?

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 .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM