Skip to content

Instantly share code, notes, and snippets.

@izumskee
Created December 9, 2016 08:04
Show Gist options
  • Save izumskee/93ec027889265aaf08b5cc287cee1d0b to your computer and use it in GitHub Desktop.
Save izumskee/93ec027889265aaf08b5cc287cee1d0b to your computer and use it in GitHub Desktop.
remove duplocates in js array
var uniqEs6 = (arrArg) => {
return arrArg.filter ( (elem, pos, arr) => arr.indexOf (elem) == pos)
}
// или
const uniqEs6 = (array) => [ ...new Set (array) ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment