You can use the JavaScript API called FileReader.You can search for it in Google.It can read a file using only JS.You can then use
var lines = content.split("\n");
To separate the content by a new line.
You can use the JavaScript API called FileReader.You can search for it in Google.It can read a file using only JS.You can then use
var lines = content.split("\n");
To separate the content by a new line.