Is it possible remove delimiters when you array.toString? (javascript)
var myArray = [ \'zero\', \'one\', \'two\', \'three\', \'four\', \'five\' ]; var resul
Normally the separator is , to remove the separetor use the function .replace(/,/g,'')
,
.replace(/,/g,'')
But if there is comma , in the data you might want to consider something like
var str = ''; for(var x=0; x