You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replaces the current value in the database with the new value specified as the parameter. This is called a destructive update, because it deletes everything currently in place and saves the new value.
134
+
135
+
### Updating items in the list using `update`
124
136
125
137
Use the `update()` method to update existing items.
Note that this updates the current value with in the database with the new value specified as the parameter. This is called a non-destructive update, because it only updates the values specified.
146
+
133
147
### Removing items from the list
134
148
Use the `remove()` method to remove data at the list item's location.
0 commit comments