101
Wombat
6y

!dev

const children = {
length: 1,
data: [{
name: "noah",
gender: "male"}]
};

children.length++;
children.data.push({
name: "mina",
gender: "female"
});

const happy = true;

Comments
Add Comment