Skip to content

Instantly share code, notes, and snippets.

@venturion
Last active April 1, 2020 22:29
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 venturion/d2899f774914b7c32163381ad337dbe1 to your computer and use it in GitHub Desktop.
Save venturion/d2899f774914b7c32163381ad337dbe1 to your computer and use it in GitHub Desktop.
// Dados duplicados
const arrayData = [1,2,4,4,4,4,3,3,5,6,8]
const noDuplicates = function (arrayData) {
// Transformo em Set e depois converto para Array novamente sem as duplicatas
return [...new Set(arrayData)]
}
console.log(noDuplicates(arrayData))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment