Skip to content

Commit c087ac1

Browse files
committed
wording
1 parent 7c35830 commit c087ac1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assignments/callbacks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ const items = ['Pencil', 'Notebook', 'yo-yo', 'Gum'];
3131
// TEST 2 (declaring callback before hand):
3232
3333
function logExorbitantPrice(article) {
34-
console.log(`this ${article} costs a million dollars!`);
34+
console.log(`this ${article} is worth a million dollars!`);
3535
};
3636
3737
firstItem(items, logExorbitantPrice);
38-
// "this Pencil costs a million dollars!"
38+
// "this Pencil is worth a million dollars!"
3939
*/
4040

4141

0 commit comments

Comments
 (0)