Skip to content

Instantly share code, notes, and snippets.

@vxhviet
Last active June 23, 2023 13:18
Show Gist options
  • Save vxhviet/95c7cff125ec43b97fba641b08d43fa0 to your computer and use it in GitHub Desktop.
Save vxhviet/95c7cff125ec43b97fba641b08d43fa0 to your computer and use it in GitHub Desktop.

[JavaScript] - Arrays vs Sets and Objects vs Maps

Arrays:

task = ['Code', 'Eat', 'Code'];
  • Use when you need ordered list of values (might contain duplicates).
  • Use when you need to manipulate data

Sets:

task = new Set(['Code', 'Eat', 'Code']);
  • Use when you need to work with unique values.
  • Use when high performance is really important.
  • Use to remove duplicates from arrays.

Objects:

task = {
  task: 'Code',
  date: 'today',
  repeat: true,
}
  • More "traditional" key/ value store ("abused" objects).
  • Easier to write and access values with . and [].

Maps:

task = new Map([
  ['task', 'Code'],
  ['date', 'Today'],
  [false, 'Start Coding'],
])
  • Better performance.
  • Keys can have any data type.
  • Easy to iterate.
  • Easy to compute size.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment