Skip to content

Instantly share code, notes, and snippets.

@masterfermin02
Created December 7, 2018 17:11
Show Gist options
  • Save masterfermin02/a43beab13719e131b6546c099b1213d1 to your computer and use it in GitHub Desktop.
Save masterfermin02/a43beab13719e131b6546c099b1213d1 to your computer and use it in GitHub Desktop.
function frequency(array_elements){
return array_elements.sort().reduce((b,c)=>((b[b.findIndex(d=>d[0]===c)]||b[b.push([c,0])-1])[1]++,b),[]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment