Skip to content

Instantly share code, notes, and snippets.

@pennyfx
Created December 19, 2015 06:16
Show Gist options
  • Save pennyfx/8e5369f4a0b9bc478333 to your computer and use it in GitHub Desktop.
Save pennyfx/8e5369f4a0b9bc478333 to your computer and use it in GitHub Desktop.
dedup
['3','4','3','7'].reduce(function(prev, item){
if(!Array.isArray(prev)){
prev = [prev];
}
if(prev.indexOf(item.toLowerCase())===-1){
prev.push(item.toLowerCase());
}
return prev;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment