const list = [{}, {}, {}]; //ваш массив function getById(id) { for (let i = 0; i < list.length; i++) { if (list[i].Id === id) return list[i]; } return undefined; } const item = getById(1); if (!item) alert('Не нашел'); else alert(item.Label);