Skip to content

Instantly share code, notes, and snippets.

@denisenadal
Created February 17, 2020 20:10
Show Gist options
  • Save denisenadal/daf3911e3eded115115c26c3b17c59f5 to your computer and use it in GitHub Desktop.
Save denisenadal/daf3911e3eded115115c26c3b17c59f5 to your computer and use it in GitHub Desktop.
quickly get uniques from a list
var ins = [];
var uns = [];
ins.forEach(function(item){
if(uns.indexOf(item) === -1){
uns.push(item)
}
return;
});
console.log(uns);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment