Skip to content

Instantly share code, notes, and snippets.

@mindaslab
Created March 11, 2015 11:57
Show Gist options
  • Save mindaslab/87bd259a23708eaee786 to your computer and use it in GitHub Desktop.
Save mindaslab/87bd259a23708eaee786 to your computer and use it in GitHub Desktop.
console.log("Hello World!\n");
function sort_by_price(a, b){
return a.price > b.price;
}
array = [{price: 100}, {price: 50}, {price: 70}];
console.log(array);
sorted_array = array.sort(sort_by_price);
console.log(sorted_array);
first_two = sorted_array.slice(0,2);
console.log(first_two);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment