0
can someone explain this code to me plz
It's about Function Parameters function main() { var eventExample = readLine(); // function call setReminder(eventExample) } //complete the function function setReminder(event) { console.log('You set a reminder about ' + event); };
2 Answers
+ 2
1. get input
2. pass input to setReminder() and call the function.
0
Thank you so much....I got it ^^