ho pour boucler un tableau d'objets

yourArray.forEach(function (arrayItem) {
    var x = arrayItem.prop1 + 2;
    console.log(x);
});
Annoying Ant