snapshot.forEach(doc => {
console.log("ID: "+doc.id, '=>', "Doc DATA: "+JSON.stringify(doc.data()));
});
I am looking to extract just one item from doc.data(), which is an array of strings named "supportedCurrencies". Can someone guide me on how to do this? I am still learning about using Firestore and TS, so any assistance would be greatly valued.
Thank you!