Guest User

Untitled

a guest
Feb 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function displayArrayfromLocalStorage() {
  2. // an array of pets I have previously owned
  3. var pets = ["dog", "cat", "hamster", "otter", "cat"];
  4.  
  5. //Add the array to local storage
  6. localStorage.animalList = pets;
  7.  
  8. //Retrieve it
  9. console.log(localStorage);
  10. alert(localStorage.animalList);
  11. }
Add Comment
Please, Sign In to add comment