javascript avant chaque exemple de pause
The for…of loop would be the preferred solution to this problem. It provides clean easy to read syntax and also lets us use break once again.
let data = [
{name: 'Rick'},{name: 'Steph'},{name: 'Bob'}
]
for (let obj of data) {
console.log(obj.name)
if (obj.name === 'Steph') break;
Sparkling Stoat