Firebase Cloud Functions V2 - Aviv Laufer - DevFest Boston 2023

preview_player
Показать описание
Aviv Laufer presents on V2 Cloud Functions, the next generation of Cloud Functions @ Boston DevFest 2023

28 Jan 2023 @ sponsor RedHat's Boston Seaport office
Рекомендации по теме
Комментарии
Автор

Hello, I want to save the data of a document in variables, but when I go to use it, it comes out as undefined,
This is the function I call it from another function programmed with schedule

function updateDoc(id){
const update = => {
namemove = move.data["name"];
console.log('the move is -> ' + namemove);
});
}

thanks,

hectorcasas