Skip to content

Instantly share code, notes, and snippets.

@shoaibmehedi7
Created April 13, 2021 13:25
Show Gist options
  • Save shoaibmehedi7/73144ac6bafe46ccf24d7452e372fc2e to your computer and use it in GitHub Desktop.
Save shoaibmehedi7/73144ac6bafe46ccf24d7452e372fc2e to your computer and use it in GitHub Desktop.
function mostRepeated(array){
return array.sort((a,b) =>
array.filter(v => v===a).length
- array.filter(v => v===b).length
).pop();
}
console.log(mostRepeated(['shoaib', 'alex', 'mehedi', 'alex'])); // apple
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment