js fucntion code example
Example 1: js function
function name(parameter1, parameter2, parameter3) {
// what the function does
}
Example 2: javascript functions
function sayHelloTo(to) {
alert(`Hello ${to}`);
}
sayHelloTo('World from Grepper')
function name(parameter1, parameter2, parameter3) {
// what the function does
}
function sayHelloTo(to) {
alert(`Hello ${to}`);
}
sayHelloTo('World from Grepper')