1. Web SQL Database
  2. FileSystem API
  3. IndexedDB
  4. All of the mentioned
6 views

1 Answers

Answer: Option 3

IndexedDB is an object database, not a relational database, and it is much simpler than databases that support SQL queries. It is more powerful, efficient, and robust than the key/value storage provided by the Web Storage API, however.

6 views