Function Parameters in JavaScript
Function Parameters
Functions can take parameters. It can take as many parameters as the user wants. Function parameters are the names listed in the function's definition. Parameters also have names that are separated by a comma.
Syntax:-
function my_function(your_age){
console.log("Your age:- " + your_age);
}