How To Parse CSV With JavaScript
CSV files (short for Comma-Seperated Values) are a great way to exchange tabular data in a plain text file.
This is what it might look like:
name,age,location john,36,chicago pierre,31,paris james,27,newcastle The first row of this file is called the header, telling us what each column is about. The rest of the rows are just data.