We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 051700f commit 156392eCopy full SHA for 156392e
6-data-storage/03-indexeddb/article.md
@@ -490,16 +490,16 @@ request.onerror = function(event) {
490
// получить одну книгу
491
books.get('js')
492
493
-// получить все книги с 'css' < id < 'html'
+// получить книги с 'css' <= id <= 'html'
494
books.getAll(IDBKeyRange.bound('css', 'html'))
495
496
-// получить книги с 'html' <= id
497
-books.getAll(IDBKeyRange.lowerBound('html', true))
+// получить книги с id < 'html'
+books.getAll(IDBKeyRange.upperBound('html', true))
498
499
// получить все книги
500
books.getAll()
501
502
-// получить все ключи: id >= 'js'
+// получить все ключи, гдe id > 'js'
503
books.getAllKeys(IDBKeyRange.lowerBound('js', true))
504
```
505
0 commit comments