Skip to content

Instantly share code, notes, and snippets.

@ipassynk
Created August 25, 2016 03:04
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 ipassynk/7819740c77af122cc40cb3fcaddc77fc to your computer and use it in GitHub Desktop.
Save ipassynk/7819740c77af122cc40cb3fcaddc77fc to your computer and use it in GitHub Desktop.
let col = [
{name:'Julia', count:4},
{name:'Vadim', count:6},
{name:'Anna', count:2}];
let res = _.compose(_.get('name'), _.first, _.sortBy('count'))(col);
console.log(res);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment