Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Created September 1, 2019 04:11
Show Gist options
  • Save heinthanth/b15e644b30d2eba218dd83c55a1f2e93 to your computer and use it in GitHub Desktop.
Save heinthanth/b15e644b30d2eba218dd83c55a1f2e93 to your computer and use it in GitHub Desktop.
sort
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