es6console icon indicating copy to clipboard operation
es6console copied to clipboard

Event loop seems to be buggy

Open hriddhidey opened this issue 5 years ago • 0 comments

Tried running the following -

console.log("1");
setTimeout(function () {
  console.log("2");
}, 0);
console.log("3");

Expected output -

1
3
2

Actual output -

2
1
3

hriddhidey avatar Jul 27 '18 21:07 hriddhidey