Answers for "how to push items into an array in localstorage"

4

localsstorage array append element

function addEntry() {
    // Parse any JSON previously stored in allEntries
    var existingEntries = JSON.parse(localStorage.getItem("allEntries"));
    if(existingEntries == null) existingEntries = [];
    var entryTitle = document.getElementById("entryTitle").value;
    var entryText = document.getElementById("entryText").value;
    var entry = {
        "title": entryTitle,
        "text": entryText
    };
    localStorage.setItem("entry", JSON.stringify(entry));
    // Save allEntries back to local storage
    existingEntries.push(entry);
    localStorage.setItem("allEntries", JSON.stringify(existingEntries));
};
Posted by: Guest on June-13-2020
0

add array to localstorage

localstorage.names = JSON.stringify(names);
var storedNames = JSON.parse(localStorage.names);
Posted by: Guest on August-25-2021

Code answers related to "how to push items into an array in localstorage"

Code answers related to "Javascript"

Browse Popular Code Answers by Language