xxxxxxxxxx
function timesFive(num) {
return num * 5;
}
const answer =timesFive (5);
console.log(answer)
xxxxxxxxxx
Parameter is the variable in the declaration of the function.
Argument is the actual value of this variable that gets passed to the function.