コレクションまたはサブコレクションが存在するかどうかを確認
subCollection2存在確認
const db = firebase.firestore();
const collection1 = db.collection('collection1');
var doc = collection1
.doc("docId1")
.collection('subCollection1')
.doc("subDocId1")
.collection('subCollection2')
.get()
.then(snapshot => {
console.log(snapshot.docs.length);
if(snapshot.docs.length > 0){
console.log(snapshot.docs.length);
}
else{
console.log(snapshot.docs.length);
}
});