- Node.js Version: 10.15.3
- OS: windows 10 1809
- Scope (install, code, runtime, meta, other?): code
- Module (and version) (if relevant): Timers
var a = setTimeout(function () {
console.log('time')
},1000 )
console.log(a)
I want to know why the return value of nodejs is Timeout and chrome console is a timeoutID.
I want to know why the return value of nodejs is Timeout and chrome console is a timeoutID.