I've a simple document in my Firestore collection.
{
"posts": ["0", "1", "3"],
"title": "Delete an array element"
}
I know how to delete an entire document using the auto generated Direbase doc id but I'm not sure how do I delete a specific element in an array, let's here I'd like to delete the 1.
And I don't want to use updateDoc for this to work.
Using Javascript for the integration.
