Answers for "how to read the content of a file in javascript"

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
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
-1

javascript load content from file

//with JQuery

jQuery.get('http://localhost/foo.txt', function(data) {
    alert(data);
});
Posted by: Guest on December-17-2020

Code answers related to "how to read the content of a file in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language