// Fetch API fetch('file.txt') .then(response => response.text()) .then(text => console.log(text)); // Local Storage localStorage.setItem("lastname", "Smith"); localStorage.getItem("lastname");