Currently I have an each loop cycling through some parsed JSON objects (arrays)
But I'm not achieving the desired effect that I'm going for with the tagz variable. They aren't combining into one array. There is about 15 different arrays full of keywords and they aren't combining into one.
How would I go about concat'ing multiple unique arrays into one that's in an each loop?
$.each(i.c.u, function(i,img){
var tags = [img.keywords];
var tagz = keywords.concat(keywords);