Skip to content
This repository has been archived by the owner on Aug 4, 2019. It is now read-only.

Commit

Permalink
Completed recipe lesson
Browse files Browse the repository at this point in the history
  • Loading branch information
sasatanikazue authored and sasatanikazue committed Jun 22, 2019
0 parents commit 9e885b1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
function marinaraSauce(cookName){
var two = 2;
var oneFourth = '1/4';
console.log("Hey," + cookName + "! This is my marinara sauce recipe!");
console.log(" - Heat a medium-large saucepan over medium heat.");
console.log(" - Add " + two + " tspns of oil and 5 carlic cloves, cook until golden, about " + two + " minutes");
console.log(" - Add " + oneFourth + " cup water, " + two + " cans of crushed tomates, and salt and season with black pepper to taste.");
console.log(" - Cover the pot, bring to a boil, reduce the heat to medium low, and simmer until the sauce is heated, about 10 minutes");
console.log(" - Stir in " + oneFourth + " cup roughly chopped fresh basil, salt and pepper as needed.");
}

marinaraSauce("Adam");

0 comments on commit 9e885b1

Please sign in to comment.