Skip to content

Instantly share code, notes, and snippets.

@Vigowebs
Last active February 17, 2019 07:54
Show Gist options
  • Save Vigowebs/c3b3f36557bf46dcca2d2bf70663af54 to your computer and use it in GitHub Desktop.
Save Vigowebs/c3b3f36557bf46dcca2d2bf70663af54 to your computer and use it in GitHub Desktop.
function removeDuplicate(arr) {
return Array.from(new Set(arr))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment