What i would like to to is import a csv file in my program knowing it's path.
For example if the path to the csv is C:/Users/User/example.csv
I would like to somehow load this in my program, something like:
let MY_CSV_FILE =CSV_LOAD("C:/Users/User/example.csv")
I don't care about writing to it or reading from it, just loading it.
How could this be done in javascript?