Sort Array

Run Settings
LanguageJavaScript
Language Version
Run Command
const ARTICLES = [ { title: "A message to our customers", upvotes: 12, date: "2020-01-24", }, { title: "Alphabet earnings", upvotes: 22, date: "2019-11-23", }, { title: "Artificial Mountains", upvotes: 2, date: "2019-11-22", }, { title: "Scaling to 100k Users", upvotes: 72, date: "2019-01-21", }, { title: "the Emu War", upvotes: 24, date: "2019-10-21", }, { title: "What's SAP", upvotes: 1, date: "2019-11-21", }, { title: "Simple text editor has 15k monthly users", upvotes: 7, date: "2010-12-31", }, ]; ARTICLES.map(art => { console.log(art.title); }) console.log('-------') const myArt = ARTICLES.sort(function(a, b) { if (a.upvotes > b.upvotes){ return -1; } if (a.upvotes < b.upvotes){ return 1; } return 0; }); myArt.map(art => { console.log(art.title); })
Editor Settings
Theme
Key bindings
Full width
Lines