Skip to content

Instantly share code, notes, and snippets.

@Vigowebs
Last active February 17, 2019 07:54
Show Gist options
  • Save Vigowebs/dd0bf09d94ed0c04ed1ea15a55fbba7a to your computer and use it in GitHub Desktop.
Save Vigowebs/dd0bf09d94ed0c04ed1ea15a55fbba7a to your computer and use it in GitHub Desktop.
function removeDuplicate(arr) {
return arr.filter((element, index, array) => array.indexOf(element) === index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment