Home » HTML » Html miscellaneous » Question
  1. In localStorage object data ________.
    1. can be seen but can not edit
    2. is deleted after the browser has been closed
    3. can be seen as well as edit
    4. is not deleted after the browser has been closed
    5. None of these
Correct Option: D

Data with no expiration date is stored by localStorage object. Here the data is not deleted if we close the browser. We can have data at the next day or week or year. Syntax is

localStorage(“firstname”,”Tanya”); document.getElementById(“fo”).innerHTML= localStorage.getItem(“firstname”); here fo is id.



Your comments will be displayed only after manual approval.