localStorage
// localStorage for objects, arrays or any data type var obj = { firstName: "Bob", lastName: "Jeff", age: 13 } localStorage.setItem("itemname", JSON.stringify(obj)); // Save the obj as string var item = JSON.parse(localStorage.getItem("itemname")); // ^^ Parse string then set `item` as the obj