Answers for "creating an array and storing it in localstorage"

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

Code answers related to "creating an array and storing it in localstorage"

Code answers related to "Javascript"

Browse Popular Code Answers by Language