Devtools在控制台中打印一些奇怪的数字?

Ank*_*aha 1 javascript google-chrome settimeout google-chrome-devtools

这是我在控制台中运行的代码.

// Parameterless arrow functions that are visually easier to parse
setTimeout( () => {
  console.log('I happen sooner');
  setTimeout( () => {
    // deeper code
    console.log('I happen later');
  }, 1);
}, 1);
Run Code Online (Sandbox Code Playgroud)

这样的记录是这样的

32
I happen sooner
I happen later
Run Code Online (Sandbox Code Playgroud)

我不明白这是什么意思,每次增加2,我运行相同的代码.

squ*_*oid 5

这是它的身份setTimeout.它可以在将来用于取消此setTimeout.

这是一些文档

https://msdn.microsoft.com/en-us/library/ms536749(VS.85).aspx