how to print array without comma in javascript code example
Example: acces arrey lements without comma
var str = array.join(' '); //'apple tree'
// separator ---------^
var str = array.join(' '); //'apple tree'
// separator ---------^