Title says the question but to be more specific and using an example given:
- | Name | Surname | Age |
- | Robert | Red | 25
and I want to use the name Robert in the code like a variable but to export it from the CSV file. (so something like csv.name[1]) I've been studying for 2/3 months now so I'm totally a beginner. I've been searching online or in forums but couldn't find anything. Let me know if there's something confusing. Have a wonderful day all.
Edit* and then you can do like
- var name = csv.name[1]
- console.log(name)
And by editing the name automatically will change the output.