Answers for "javascript read text file into string"

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
1

javascript store text file into string

var fs = require("fs");
fs.readFile("./mytext.txt", function(text){
    var textByLine = text.split("\n")
});
Posted by: Guest on November-01-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
-1

extract string from text file javascript

$(function () {
    $.get('/your_file.txt', function (data) {
       words = data.split('\s');
    });
});
Posted by: Guest on July-14-2020

Code answers related to "javascript read text file into string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language