Reputation: 6856
How I could append an element to an array like that ?.
Upvotes: 0
Views: 800
Reputation: 598847
Adding an item to an array structure like that, requires three steps:
In code that'd be something like:
const ref = admin.database().ref("javascript");
ref.once("value").then((snapshot) => {
let numChildren = parseInt(snapshot.numChildren());
ref.child(""+(numChildren+1)).set(4);
});
Note that this type of data structure is fairly non-idiomatic when it comes to Firebase, and I recommend reading:
Upvotes: 1