1let match = recipes.filter(function(element) {
2 for (let i = 0; i < element.ingredients.length; i++) {
3 if (element.ingredients[i] === 'citron') {
4 return element;
5 }
6 }
7});
8
9console.table(match); // Retourne les 2 dernières lignes