Last active
April 25, 2018 13:13
-
-
Save gpalsingh/1c647b9e39fecbfa5c353ed051195c5d to your computer and use it in GitHub Desktop.
sets_basic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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