Note: This feature is available in Web Workers.
The includes() method of the IDBKeyRange interface returns a boolean indicating whether a specified key is inside the key range.
includes(key)keyThe key you want to check for in your key range. This can be any type.
A boolean value.
DataError DOMExceptionThrown if the supplied key was not a valid key.
const keyRangeValue = IDBKeyRange.bound("A", "K", false, false);
keyRangeValue.includes("F");
// Returns true
keyRangeValue.includes("W");
// Returns falseIDBDatabaseIDBTransactionIDBKeyRangeIDBObjectStoreIDBCursor