Skip to content

Instantly share code, notes, and snippets.

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