What is the simplest way to insert new value data in existing value, for example, lets say that i have already stored data numbers : "one", and i want to insert the word "two" at the end for numbers : "one,two".
Thank you!
What is the simplest way to insert new value data in existing value, for example, lets say that i have already stored data numbers : "one", and i want to insert the word "two" at the end for numbers : "one,two".
Thank you!
This is known as an update, not an insert. To update a value, read the value from indexedDB, edit the value, then save the updated value in place of the original value. You can use a put request for this purpose.