Created
September 1, 2019 04:11
-
-
Save heinthanth/b15e644b30d2eba218dd83c55a1f2e93 to your computer and use it in GitHub Desktop.
sort
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
var x = ["c", "r", "o", "b"]; | |
x = x.sort(); | |
// now, x become ["b", "c", "o", "r"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment