Skip to content

Instantly share code, notes, and snippets.

@HektorW
Last active September 26, 2018 06:57
Show Gist options
  • Save HektorW/9735504 to your computer and use it in GitHub Desktop.
Save HektorW/9735504 to your computer and use it in GitHub Desktop.
function sleepSort(res, arr) {
arr.forEach(function(val) {
setTimeout(function() {
res.push(val);
}, val * 5);
})
}
var res = [];
sleepSort(res, [4, 6, 2, 9, 3, 5, 1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment