Last active
November 10, 2018 22:35
-
-
Save hudochenkov/29b739f8dbdb4aa00a46b953f62dd0a6 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
{"name": "sort-error", "version": "0.0.0", "bin": "./sort.js"} |
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
#!/usr/bin/env node | |
const declarations = [1, 2, 3, 4]; | |
declarations.sort((a, b) => { | |
console.log(`a: ${a}, b: ${b}`); | |
return a - b; | |
}); | |
console.log(declarations); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment