Skip to content

Instantly share code, notes, and snippets.

@gpalsingh
Created April 25, 2018 13:57
Show Gist options
  • Save gpalsingh/00fb68ba75dcb292943529a2e7d197ee to your computer and use it in GitHub Desktop.
Save gpalsingh/00fb68ba75dcb292943529a2e7d197ee to your computer and use it in GitHub Desktop.
set_delete
const animals = new Set(["rat", "dog", "cat", "horse", "elephant", "rat", "rat", "cat"]);
console.log(animals.delete("rat"));
console.log(animals.delete("rat"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment