Ejemplo 1: leer texto en el archivo txt js
const fs = require('fs')
fs.readFile("File.txt", (err, data) => {
if (err) throw err;
console.log(data);
})
Ejemplo 2: leer archivo 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);
});
Ejemplo 3: javascript lee líneas de archivo en una matriz de vainilla
const fileList = event.target.files;
let fileContent = "";
const fr = new FileReader();
fr.onload = () => {
fileContent = fr.result;
console.log('Commands', fileContent);
}
fr.readAsText(fileList[0]);
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)