-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
31 lines (29 loc) · 838 Bytes
/
Copy pathscript.js
File metadata and controls
31 lines (29 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
function marinaraSauce(cookName) {
var two = 2;
var oneForth = "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 " +
oneForth +
" 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 " +
oneForth +
" cup roughly chopped fresh basil, salt and pepper as needed, please."
);
}
marinaraSauce("Adam");