i want to append a object to a array of objects in JSON File with nodeJS
My JSON File
{
"entreprise": "kem",
"pesee": [
{
"nom": "aaa",
"prenom": "bbb"
},
{
"nom": "ccc",
"prenom": "ddd"
},
{
"nom": "eee",
"prenom": "fff"
}
]
}
i want to add to pesee this object
{
"nom": "ccc",
"prenom": "ddd"
},