['string1', 'string2'].join(',') // "string1,string2"
How can I obtain the following result?
"string1", "string2"
I am using underscore and jquery.
My goal is to make something like that:
_.without(['string1', 'string2', 'string3'], "string1", "string2");
=> ['string3']