Is their a way- client side, to add text to a file named text.txt in javascript?
In python:
f = open("text.txt","w")
f.write("Hello World")
f.close()
would write "Hello World" into the text file. I want to do something similar with javascript.
Note: I am running these files locally.