en.javascript.info icon indicating copy to clipboard operation
en.javascript.info copied to clipboard

Typo in IndexedDB example

Open irfanghat opened this issue 1 year ago • 0 comments

There might have been a typo or perhaps an update was made to the documentation but not on the example

Example Code Snippet

async function init() {
  db = await idb.openDb('booksDb', 1, db => {
    db.createObjectStore('books', {keyPath: 'name'});
  });

irfanghat avatar Mar 07 '24 22:03 irfanghat