Friday , September 20 2024

In the browser, we type into the address bar a string starting with file:///. This means that:

Questions BankCategory: JavaScript Essentials 1In the browser, we type into the address bar a string starting with file:///. This means that:
In the browser, we type into the address bar a string starting with file:///. This means that:

  • we want the browser to create an empty page for us with the name we give as a continuation of the string.
  • the rest of the string is the path to the file on our local computer that we want to open in the browser.
  • we want to save the page as a local file.
  • we do not want to open the page, but only download a file from the remote address and save it on the local machine.

More Questions: JavaScript Essentials 1 – JSE1: Module 1 Test