0
So I'm having trouble with the following js code coach, it's actually hindering me from unlocking other lessons.
Code: function setReminder(event){ console.log('You set a reminder about' +event); }; Expected Output: You set a reminder about workout Actual Output: You set a reminder aboutworkout
3 Answers
+ 2
Hi! before the last single quotation mark, put a space
--->>> ... about '
+ 2
Thank you Yaroslav Vernigora . It worked.
0
Good luck, and happy coding!