📜  JAVASCRIPT FILTRER TABLEAU MULTIDIMENSIONNEL - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:56.698000             🧑  作者: Mango

代码示例1
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