Google News
logo
JavaScript IndexedDB - Interview Questions
What is an object store in IndexedDB?
In IndexedDB, an object store is a container within a database where data is stored. It can be thought of as similar to a table in a relational database or a collection in a NoSQL database.

Object stores hold structured data in the form of key-value pairs, allowing developers to store and retrieve data efficiently.

Key characteristics of an object store in IndexedDB include :

* Structure
* Key-Value Pairs
* Schema-less
* Indexed Access
* Transaction Scope
* Object Store Options
Advertisement