Last active
October 18, 2016 18:19
-
-
Save dillansimmons/d7d76a981599007208091822d33ecc67 to your computer and use it in GitHub Desktop.
Filter out duplicates from array and create new array.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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