Currently, I am storing a class in Firebase by using the update()
function.
Is there a way to stop specific fields (identified by name) of the object from being saved to the Firebase database?
It's similar to how we use the transient
keyword in Java.
I'm looking for a solution that doesn't involve utilizing the JS delete
operator.