Answers for "how to read text file in javascript w3schools"

1

read text in txt file js

const fs = require('fs')

fs.readFile("File.txt", (err, data) => {
	if (err) throw err;
	console.log(data);
})
Posted by: Guest on April-03-2021
1

html get text from file

<embed src="file.txt"> // This will show the text contained in file.txt in the page
Posted by: Guest on November-14-2020

Code answers related to "how to read text file in javascript w3schools"

Browse Popular Code Answers by Language