Answers for "can you set array in local storage"

10

javascript store array in localstorage

//storing array in localStorage
var colors = ["red","blue","green"];
localStorage.setItem("my_colors", JSON.stringify(colors)); //store colors
var storedColors = JSON.parse(localStorage.getItem("my_colors")); //get them back
Posted by: Guest on July-31-2019
0

set array of objects in localstorage

//set item in local storage
localStorage.setItem("savedData", JSON.stringify(objects));

//retrieve item from local storage
objects = JSON.parse(localStorage.getItem("savedData")));
Posted by: Guest on August-21-2020

Code answers related to "can you set array in local storage"

Code answers related to "Javascript"

Browse Popular Code Answers by Language