Page cover image

IndexedDB

IndexedDB is another way to permanently store data in a user's browser. Since it can store up to approximately 2 GB of data, it also offers many features such as data types, table logic, and index.

IndexedDB is another way to permanently store data in a user's browser.

IndexedDB databases are isolated from each based on the domain.

Since it can store up to approximately 2 GB of data, it also offers many features such as data types, table logic, and index.

For example, we may use a method as follows to store personal data regarding users.

// User data looks like this:

const customerData = [

  { TCKN: "34364346335", name: "Mert", age: 28, email: "[email protected]" },

  { TCKN: "34534534534", name: "Berk", age: 23, email: "[email protected]" }

];

Last updated

Was this helpful?