can someone explain this code to me plz | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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); };

10th Nov 2022, 12:55 PM
Liyutsa Zirange
Liyutsa Zirange - avatar
2 Answers
+ 2
1. get input 2. pass input to setReminder() and call the function.
10th Nov 2022, 2:30 PM
Lisa
Lisa - avatar
0
Thank you so much....I got it ^^
11th Nov 2022, 10:54 AM
Liyutsa Zirange
Liyutsa Zirange - avatar