How I can display localStorage information on my webpage?
I am easily setItem() to localStorage and when I console.log() it is showing but I cannot display it on the page(after reloading it is gone) I wanna keep this data on my page even when I am closing the tab Thank you in advance
const title = document.querySelector("#title");
const author = document.querySelector("#author");
const rating = document.querySelector("#rating");
const category = document.querySelector("#category");
const bookList = document.querySelector("#book-list");
document.querySelector("#book-form").addEventListener("submit", (e) => {
  e.preventDefault();
});
document.querySelector("#submit-btn").addEventListener("click", function () {
  if (
    title.value === "" ||
    author.value === "" ||
    rating.value === "" ||
    category.value === ""
  ) {
    alert("Please fill the form");
  } else {
    //  Creating tr th and appending to list
    const bookListRow = document.createElement("tr");
    const newTitle = document.createElement("th");
    newTitle.innerHTML = title.value;
    bookListRow.appendChild(newTitle);
    const newAuthor = document.createElement("th");
    newAuthor.innerHTML = author.value;
    bookListRow.appendChild(newAuthor);
    const newRating = document.createElement("th");
    newRating.innerHTML = rating.value;
    bookListRow.appendChild(newRating);
    const newCategory = document.createElement("th");
    newCategory.innerHTML = category.value;
    bookListRow.appendChild(newCategory);
    const deleteBtn = document.createElement("th");
    deleteBtn.classList.add("delete");
    deleteBtn.innerHTML = "X";
    bookListRow.appendChild(deleteBtn);
    bookList.appendChild(bookListRow);
    //Storage
    let storageTitle = title.value;
    let storageAuthor = author.value;
    let storageRating = rating.value;
    let storageCategory = category.value;
    localStorage.setItem("title", JSON.stringify(storageTitle));
    localStorage.setItem("author", JSON.stringify(storageAuthor));
    localStorage.setItem("rating", JSON.stringify(storageRating));
    localStorage.setItem("category", JSON.stringify(storageCategory));
    for (var i = 0; i < localStorage.length; i++) {
      newTitle += localStorage.getItem(localStorage.key(i));
    }
    // Clear
    title.value = "";
    author.value = "";
    rating.value = "";
    category.value = "";
  }
});
// Remove each books by clicking X button
bookList.addEventListener("click", (e) => {
  e.target.parentElement.remove();
}); ```
 
     
     
    