Complete the code to set a Firestore document field with a supported data type.
docRef.set({"age": [1])Firestore supports numbers like 25 as valid data types for document fields.
Complete the code to add a timestamp field using Firestore's supported data types.
docRef.set({"createdAt": [1])Firestore uses firebase.firestore.Timestamp for timestamp fields to ensure proper storage and querying.
Fix the error in the code to store a supported array type in Firestore.
docRef.set({"tags": [1])Firestore supports arrays as JavaScript arrays, not as objects or sets.
Fill both blanks to correctly store a nested map with supported data types in Firestore.
docRef.set({"user": {"name": [1], "age": [2])Firestore supports nested maps with string and number values as shown.
Fill all three blanks to correctly store different supported Firestore data types in a document.
docRef.set({"active": [1], "score": [2], "joined": [3])Firestore supports booleans, numbers, and timestamps as shown.