method for adding a key value pair to the window object’s local storage
.setItem(keyName, JSON.stringify(objectToSave));
method for retrieving a value from the window object’s local storage
window.localStorage.getItem(keyName)
Method that turns stringifed JSON code back into normal JSON code?
JSON.parse(itemToParse)