Skip to content

Instantly share code, notes, and snippets.

@themarcba
Created June 30, 2021 16:40
Show Gist options
  • Save themarcba/792a852dbfc7050a4f55726c21c80e40 to your computer and use it in GitHub Desktop.
Save themarcba/792a852dbfc7050a4f55726c21c80e40 to your computer and use it in GitHub Desktop.
const sleepSort = arr => {
arr.forEach(n => {
setTimeout(() => console.log(n), n * 1000)
})
}
sleepSort([5, 7, 1, 2])
@themarcba
Copy link
Author

DISCLAIMER: This is a joke algorithm. Please don't use this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment