Skip to content

Instantly share code, notes, and snippets.

@amysimmons
Created July 17, 2018 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amysimmons/4afd28854529a3feaa2a424d22b7e23d to your computer and use it in GitHub Desktop.
Save amysimmons/4afd28854529a3feaa2a424d22b7e23d to your computer and use it in GitHub Desktop.
// REGULAR ARRAY (can have duplicates)

x = []
x.push(1)
x.push(1)
x.length // 2

// SET (cannot have duplicates)

y = new Set()
y.add(1)
y.add(1)
y.size // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment