union
db.union
adds non-existent elements to an array field.
add elements to an array
await db.update({favorites: db.union("tomato", "potate", "grape")}, "users", "Bob")
// equivalent firestore
fs.collection("users").doc("Bob").update({favorites: firebase.firestore.FieldValue.arrayUnion("tomato", "potate", "grepe")})