Answers for "get array from local storage javascript"

10

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
0

js get array object from local storage

users = JSON.parse(localStorage.getItem("users") || "[]");
Posted by: Guest on January-30-2021

Code answers related to "get array from local storage javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language