Answers for "get local storage array value"

25

local storage javascript array

//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
-1

js get array object from local storage

localStorage.setItem("users", JSON.stringify(users));
Posted by: Guest on January-30-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language