im new to js, have two question about how to parse a csv, i have a simple csv with two column, column1:'user', column2:'amount'
how can i get one array with all the 'user' column value and one array with all the 'amount' column value?
And can i loop trough the rows and use index to get the value of the two column? something like
csv['amount'][0] or csv[0][1]
or something like this?
ty.