javascript read txt file code example
Example 1: read text in txt file js
const fs = require('fs')
fs.readFile("File.txt", (err, data) => {
if (err) throw err;
console.log(data);
})
Example 2: read file javascript
// As with JSON, use the Fetch API & ES6
fetch('something.txt')
.then(response => response.text())
.then(data => {
// Do something with your data
console.log(data);
});
Example 3: html get text from file
<embed src="file.txt"> // This will show the text contained in file.txt in the page