> For the complete documentation index, see [llms.txt](https://dexiejs.typogram.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dexiejs.typogram.co/table/table.delete.md).

# Table.delete()

Delete object from store.

#### Syntax

```javascript
table.delete(primaryKey)
```

#### Parameters

#### Return Value

Promise that resolves successfully with an undefined result, no matter if a record was deleted or not. Rejection happens if the provided key is not a valid key (not a Number, String, Date or Array\<Number | String | Date>) or if the current transaction is readonly or inactive.

#### Remarks

Deletes the object and resolves or rejects the returned promise when done.

#### See Also

Collection.delete()

Table.clear()

Dexie.delete()
