Answers for "find max of countby"

0

find max of countby

var array = [3, 'a', 'a', 'a', 2, 3, 'a', 3, 'a', 2, 4, 9, 3];

var result = _.head(_(array)
  .countBy()
  .entries()
  .maxBy(_.last));

console.log(result);
Posted by: Guest on October-31-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language