JenMorgan / js-learning

0 stars 0 forks source link

Create an object to hold information on your favorite recipe. It should have properties for title (a string), servings (a number), and ingredients (an array of strings). #19

Open kartamyshev opened 4 years ago

JenMorgan commented 4 years ago
const favouriteRecipe = {
    title: "Ecleur",
    servings: 5,
    ingredients: ["flour", "sugar", "butter", "milk"],
}