javascript-tutorial / en.javascript.info

Modern JavaScript Tutorial
https://javascript.info
Other
23.04k stars 3.82k forks source link

Typo in IndexedDB example #3676

Open lexara-prime-ai opened 4 months ago

lexara-prime-ai commented 4 months ago

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'});
  });