How can I open a .csv file and turn values into a javascript array.
In classical programming i'd do this by:
- opening the file as a string
- splitting by
,
- close the file
I know how to split, .split(',')
, but how do I open and close the csv file in javascript or jquery?