Works great for me:
Array.prototype.diff = function(a) { return this.filter(function(i) {return a.indexOf(i) < 0;}); }; const dif = [[TABLE1]].diff([[TABLE2]]); [[DIF]] = (dif);For each element option ?
-
Where can I find the "For each element" option when I click on a element ? Usually after clicking that option I would hit the "start loop" option for scraping a website. I'm watching a tutorial but I guess the version I'm using is newer.

-
@asmithy245 I think that for each element & start the loop are the same things that you talk about.