html array to string code example
Example 1: js string to array
var myString = 'no,u';
var MyArray = myString.split(',');//splits the text up in chunks
Example 2: how to print a array js
var array = [1,2,3]
for(var i = 0; i < array.length ; i++){
console.log(array[i])
}
Example 3: array to string javascript
<array>.join(<splitting character(s)>);