How would I get this array to be passed in as a set of strings to the function? This code doesn't work, but I think it illustrates what I'm trying to do.
var strings = ['one','two','three'];
someFunction(strings.join("','")); // someFunction('one','two','three');
Thanks!