Skip to content

Commit 8bfd1a7

Browse files
committed
Add TODO markers
1 parent 05b077e commit 8bfd1a7

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

1-JavaScript/Week3/homework/ex1-giveCompliment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Use `console.log` each time to display the return value of the
1818
`giveCompliment` function to the console.
1919
-----------------------------------------------------------------------------*/
20-
function giveCompliment(/* parameter(s) go here */) {
20+
function giveCompliment(/* TODO: parameter(s) go here */) {
2121
// TODO: complete this function
2222
}
2323

1-JavaScript/Week3/homework/ex3-tellFortune.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const jobTitles = [
4343

4444
// This function should take an array as its parameter and return
4545
// a randomly selected element as its return value.
46-
function selectRandomly(/* parameter(s) go here */) {
46+
function selectRandomly(/* TODO: parameter(s) go here */) {
4747
// TODO: complete this function
4848
}
4949

1-JavaScript/Week3/homework/ex5-totalCost.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const cartForParty = {
2323
// TODO: complete this function
2424
};
2525

26-
function calculateTotalPrice(/* parameter(s) go here */) {
26+
function calculateTotalPrice(/* TODO: parameter(s) go here */) {
2727
// TODO: replace this comment with your code
2828
}
2929

1-JavaScript/Week4/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ Good luck with completing `createPublisher`!
9191
function createPublisher() {
9292
const listeners = [];
9393
return {
94-
subscribe: function (/* parameter(s) go here */) {
94+
subscribe: function (/* TODO: parameter(s) go here */) {
9595
// TODO: complete this function
9696
},
97-
notify: function (/* parameter(s) go here */) {
97+
notify: function (/* TODO: parameter(s) go here */) {
9898
// TODO: complete this function
9999
},
100100
};

1-JavaScript/Week4/homework/ex2-mondaysWorth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const mondayTasks = [
2929

3030
const hourlyRate = 25;
3131

32-
function computeEarnings(/* parameter(s) go here */) {
32+
function computeEarnings(/* TODO: parameter(s) go here */) {
3333
// TODO: complete this function
3434
}
3535

1-JavaScript/Week4/homework/ex3-lemonAllergy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const fruitBasket = [
2323
"lemon",
2424
];
2525

26-
function sanitizeFruitBasket(/* parameter(s) go here */) {
26+
function sanitizeFruitBasket(/* TODO: parameter(s) go here */) {
2727
// TODO: complete this function
2828
}
2929

1-JavaScript/Week4/homework/ex4-publishSubscribe.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ Good luck with completing `createPublisher`!
4040
function createPublisher() {
4141
const listeners = [];
4242
return {
43-
subscribe: function (/* parameter(s) go here */) {
43+
subscribe: function (/* TODO: parameter(s) go here */) {
4444
// TODO: complete this function
4545
},
46-
notify: function (/* parameter(s) go here */) {
46+
notify: function (/* TODO: parameter(s) go here */) {
4747
// TODO: complete this function
4848
},
4949
};

0 commit comments

Comments
 (0)