how to get local storage value in javascript

JavaScript
var testObject = { 'one': 1, 'two': 2, 'three': 3 };

// Put the object into storage
localStorage.setItem('testObject', JSON.stringify(testObject));

// Retrieve the object from storage
var retrievedObject = localStorage.getItem('testObject');

console.log('retrievedObject: ', JSON.parse(retrievedObject));var pull=JSON.parse(localStorage.getItem('data'))
for(var i=0; i<pull.length; i++){
    new arrayName(pull[i].AnyName, pull[i].AnyName, pull[i].AnyName)//localStorage is an object, so values are stored by key name
//data from localStorage is always stored in strings
//usually the values at each key are stringified objects in JSON format, therefore we must parse them
var data = JSON.parse(localStorage.getItem("key name"));//make sure the "key name" exists in the localStorage
Source

Also in JavaScript: