funcs.js code example
Example 1: js function
function name(parameter1, parameter2, parameter3) {
// what the function does
}
Example 2: js function
function MyFunction() {
/* Function Here */
}
function name(parameter1, parameter2, parameter3) {
// what the function does
}
function MyFunction() {
/* Function Here */
}