Answers for "how to txt file read in javascript"

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
0

how to read a file in javascript

fetch('file.txt')
  .then(response => response.text())
  .then(text => console.log(text))
  // outputs the content of the text file
Posted by: Guest on March-16-2021

Code answers related to "how to txt file read in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language