Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created November 22, 2021 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4652fbadefe9461f6caab1fe03f0bc0f to your computer and use it in GitHub Desktop.
Save parzibyte/4652fbadefe9461f6caab1fe03f0bc0f to your computer and use it in GitHub Desktop.
const instantanea = await getDocs(this.coleccionUsuarios);
instantanea.forEach((datoInstantanea) => {
this.usuarios.push({
id: datoInstantanea.id,
nombre: datoInstantanea.data().nombre,
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment