Проще говоря, вы можете объединить в цепочку толчок, как показано ниже:
const example = {
id: 1,
subObject: [
{
id: 2,
subSubObject: [
{
name: 'Jackson'
}
]
}
]
};
// Simplistic Example:
example.subObject[0].subSubObject.push({ name: 'Fenton' });
console.log(JSON.stringify(example));
// Assuming you want to push it onto a particular sub object:
example.subObject.find((item) => item.id === 2).subSubObject.push({ name: 'Toby' });
console.log(JSON.stringify(example));