Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thakurinbox/ea19f25adc440d43aecdd95422a6bf06 to your computer and use it in GitHub Desktop.
Save thakurinbox/ea19f25adc440d43aecdd95422a6bf06 to your computer and use it in GitHub Desktop.
var people = [
{
"age": 3,
"name": "Rob"
}, {
"age": 5,
"name": "Tylor"
},{
"age": 4,
"name": "Eric"
}
];
people.sort(function(a, b) {
return parseFloat(a.age) - parseFloat(b.age);
});
console.log("people",people);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment