I was following the mentioned question and this one: JavaScript array to CSV
Trying to print 2 arrays in columns A and B which i can turn into a string separated by comas"," which ever is more easy to do but i just canĀ“t get it to work with the examples available.
My arrays look like this:
var Test = ["John", "Ivar", "Peter", "Tony"];
var Addres = ["Canada", "Sweden", "England", "Chile"];
And in string format its the same only separated by comas
I thought it was going to be an easy task but it's more complicated than I expected
Hope anyone here can help me with this,
Thanks