JAVASCRIPT FILTRER TABLEAU MULTIDIMENSIONNEL code example
Example: JAVASCRIPT FILTRER TABLEAU MULTIDIMENSIONNEL
let match = recipes.filter(function(element) {
for (let i = 0; i < element.ingredients.length; i++) {
if (element.ingredients[i] === 'citron') {
return element;
}
}
});
console.table(match); // Retourne les 2 dernières lignes