Category Archives: indexeddb

Khóa học miễn phí IndexedDB – Ranges nhận dự án làm có lương

IndexedDB – Ranges When we don’t want to get all the data at once we use ranges. When we want to get data in a specific range only we use ranges. We define the range using the IDBKeyRange object. This object has 4 methods which are − upperBound() lowerBound() bound() only() Syntax IDBKeyRange.lowerBound(indexKey); IDBKeyRange.upperBound(indexKey); IDBKeyRange.bound(lowerIndexKey, […]