взял тут
https://developers.google.com/web/il...with-indexeddb
dbPromise.then(function(db) {
var tx = db.transaction('store', 'readonly');
var store = tx.objectStore('store');
return store.get('sandwich');
}).then(function(val) {
console.dir(val);
});
это Promise
return store.get('sandwich')
потом идет then и там уже значение...