Is it possible remove delimiters when you array.toString? (javascript)
var myArray = [ \'zero\', \'one\', \'two\', \'three\', \'four\', \'five\' ]; var resul
You can you the replace[MDN] method:
replace
var arr = [1,2,3,4], arrStr = arr.toString().replace(/,/g, '');