Welcome to the second part of my IndexedDB article. I strongly recommend reading the first article in this series, as I’ll be assuming you are familiar with all the concepts covered so far. In this article, we’re going to wrap up the CRUD aspects we didn’t finish before (specifically updating and deleting content), and then demonstrate a real world application that we will use to demonstrate other concepts in the final article.Updating RecordsLet’s start off by discussing how to update a record with IndexedDB. If you remember, adding data was pretty simple://Define a person
var person = ...
↧