Skip to content

Instantly share code, notes, and snippets.

@StephanieSunshine
Created August 21, 2013 12:19
Show Gist options
  • Save StephanieSunshine/6293760 to your computer and use it in GitHub Desktop.
Save StephanieSunshine/6293760 to your computer and use it in GitHub Desktop.
Javascript array sorting question
If I have an array of arrays in javascript like:
[
[ 1, "a", "b"],
[ 2, "a", "b"],
[ 2, "c", "d"],
[ 3, "d", "d"]
]
How do I sort the array by the first column of each element?
@willianpc
Copy link

console.log([[ 2, "c", "d"],[ 9, "a", "b"],[ 2, "a", "b"],[ 3, "d", "d"]].sort());

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