+ 3
at what occasions will the multiple function arguments be applied.
2 Answers
+ 3
If your code requires various parameters, for example every human has a name and an age
...... Function human(name, age) {....
.....}
human(me,16);
+ 2
understood , thank you