Skip to content

Instantly share code, notes, and snippets.

@euank
Created April 16, 2014 19:41
Show Gist options
  • Save euank/f74d753e2f86f63cbf65 to your computer and use it in GitHub Desktop.
Save euank/f74d753e2f86f63cbf65 to your computer and use it in GitHub Desktop.
sleepsort joke in javascript eventloop. yes-it's-a-joke
function sort(arr) {arr.forEach(function(n){var s=['console.log('+n+');'];for(var i=0;i<n;i++) {s.unshift('process.nextTick(function(){');s.push('});');}eval(s.join(''));});}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment