How is indexedDB conceptually different from HTML5 local storage?
IndexedDB is not a key-value store in the same way that Local Storage is. Local storage just stores strings, so to put an object in local storage the usual approach is to JSON.stringify it: myObject = {a: 1, b: 2, c: 3}; localStorage.setItem(“uniq”, JSON.stringify(myObject)); This is fine for finding the object with key uniq, but … Read more