I've seen this how to export javascript array info to csv on client side
which works fine for me but there's a thing that annoys me. in CSV you can seperate the strings in differents cell with a simple comma (,) so you got like:
[["name1", "city_name1", ...], ["name2", "city_name2", ...]]
and name1 and city_name1 are in the same cell. Is there a way to get them in two different cells in Excel with JavaScript?