Skip to content

Instantly share code, notes, and snippets.

@dillansimmons
Last active October 18, 2016 18:19
Show Gist options
  • Save dillansimmons/d7d76a981599007208091822d33ecc67 to your computer and use it in GitHub Desktop.
Save dillansimmons/d7d76a981599007208091822d33ecc67 to your computer and use it in GitHub Desktop.
Filter out duplicates from array and create new array.
// Array
var x = ['x','x','y','q','x'];
var list_no_dupes = function(ogArray) {
// Filter and return new array
var newArray = ogArray.filter(function(ele, pos) {
return ogArray.indexOf(ele) === pos;
});
return newArray;
};
// Print New Array : ['x','y','q']
console.log(list_no_dupes(x));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment