Skip to content

Instantly share code, notes, and snippets.

@kbk0125
Last active August 6, 2018 01:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kbk0125/05f0408566b816358071af8c1552a117 to your computer and use it in GitHub Desktop.
Save kbk0125/05f0408566b816358071af8c1552a117 to your computer and use it in GitHub Desktop.
let box1= ["juice", "sandwich", "chips", "yogurt"];
let box2 = ["milk", "sandwich", "carrots", "chips"];
let total = box1.concat(box2);
let answer = total.filter(function(item){
let justArr1 = !box2.includes(item);
return justArr1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment