Skip to content
What is the final value of newRecipes? const moreRecipes = […
Questions
Whаt is the finаl vаlue оf newRecipes? cоnst mоreRecipes = [...recipes, {name: `curry`, servings: 5}]; console.log(moreRecipes); const junk = recipes.pop(); const newRecipes = moreRecipes.filter(r => r >5).map(r => r.servings*2);