Skip to content

Instantly share code, notes, and snippets.

@VincentDamour
Created August 14, 2016 13:59
Show Gist options
  • Save VincentDamour/709d63cb93953dc1a3b3fcb98df3bbda to your computer and use it in GitHub Desktop.
Save VincentDamour/709d63cb93953dc1a3b3fcb98df3bbda to your computer and use it in GitHub Desktop.
var sortedArray = [1, 1, 2, 3, 3, 3, 5, 8, 8];
var result = _.sortedUniq(sortedArray);
// -> [1, 2, 3, 5, 8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment