Skip to content

Instantly share code, notes, and snippets.

@IOIO72
Created May 10, 2019 08: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 IOIO72/f56817017a7aa2b227547e3b7c14c721 to your computer and use it in GitHub Desktop.
Save IOIO72/f56817017a7aa2b227547e3b7c14c721 to your computer and use it in GitHub Desktop.
Returns each value of a given array once in a set of unique values.
const getValuesUnique = arr => [...new Set(arr)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment