let zzz =
[
{
"id": 1,
"title": "Заголовок 1",
"array":[{"2020": 1},{"2019": 2},{"2018": 3},{"2017": 4},{"2016:": 5}],
},
{
"id": 33,
"title": "Заголовок 2",
"array":[{"2020": 5},{"2019": 4},{"2018": 3},{"2017": 2},{"2016:": 1}],
}
];
for (let key in zzz) {
if (key == "id") console.log('good');
console.log(key);
}