Created
June 30, 2021 16:40
-
-
Save themarcba/792a852dbfc7050a4f55726c21c80e40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const sleepSort = arr => { | |
arr.forEach(n => { | |
setTimeout(() => console.log(n), n * 1000) | |
}) | |
} | |
sleepSort([5, 7, 1, 2]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DISCLAIMER: This is a joke algorithm. Please don't use this.