Home > Mobile >  How can I add a new row to CSV file in pure JS
How can I add a new row to CSV file in pure JS

Time:02-19

I'm currently working on a project. I created a CSV file and I want to append data in it. I've been searching for hours and all I found was with Node.js. But I want to do it with pure JS. Thanks in advance.

Good Day

CodePudding user response:

You cannot append data in a file using javascript it is because javascript is a client/browser-based language you have to use some kind of server-side language to do that.

You have options like:

  • Node
  • PHP

Thanks.

  • Related