Как прочитать текст из локального файла в JavaScript

fetch("file.txt")
	.then((response) => {
  		return response.text();
	})
	.then((text) => {
  		console.log(text);
	});
Embarrassed Earthworm