Forum Discussion
ChuckGrigsby
8 years agoQrew Cadet
I see underscore in there so you can use that by using this. Just pass your array of words through this before sending to the concat field. I haven't used underscore a lot so Dan may chime in with a way better answer as always :P
http://underscorejs.org/#uniq
_.uniq(data);
Another examle
http://underscorejs.org/#uniq
_.uniq(data);
Another examle
_.uniq([1, 2, 1, 4, 1, 3]);=> [1, 2, 4, 3]
For sorting you can then pass it through something like this_.iteratee(value, [context])
KrissyKrissy
8 years agoQrew Cadet
I basically copied the formula i'm using exactly as is. Is it possible you could tell me exactly where exactly this new addition might go within my formula? Sorry for being such a novice. :)