Slide 29
Slide 29 text
Show me the code
bolognese.js
define('Recipe.Bolognese',
[
'Ingredients.Water',
'Ingredients.Salt',
'Ingredients.Pasta',
'Ingredients.Tomato',
'Ingredients.GroundBeef',
'Ingredients.OliveOil'
], function(water, salt, pasta, tomato, groundBeef, oliveOil) {
var cook = function() {
addIngredients([water, salt, pasta, oliveOil]);
makeSauce([tomato, salt, oliveOil]);
addIngredients([groundBeef]);
}
var addIngredients = function(ingredients) {}
var makeSauce = function(ingredients) {}
return {
cook: cook
};
});