Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fl0w
Created February 26, 2016 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fl0w/f8a0ffa891732f0cba34 to your computer and use it in GitHub Desktop.
Save fl0w/f8a0ffa891732f0cba34 to your computer and use it in GitHub Desktop.
'use strict'
let i = setInterval(() => {
console.log('x')
}, 0)
function run() {
console.log('.')
process.nextTick(run)
}
run()
// only prints `.`
// expecting to see `x` at times.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment