Answers for "read text from file 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
2

how to load localt ext file in js

const fileUrl = '' // provide file location

fetch(fileUrl)
   .then( r => r.text() )
   .then( t => console.log(t) )
Posted by: Guest on June-03-2020
1

read text file in javascript

fetch("file.txt")
	.then((response) => {
  		return response.text();
	})
	.then((text) => {
  		console.log(text);
	});
Posted by: Guest on October-05-2021

Code answers related to "read text from file javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language