calling a function in javascript code example
Example 1: how to use function in javascript
function myFunc(param) {
}
Example 2: running a function in a function javascript
function runFunction() {
myFunction();
}
function myFunction() {
alert("runFunction made me run");
}
runFunction();
Example 3: Functions call functions js
function sum (arr) {
let suma = 0;
for (let i = 0; i < arr.length; i++) {
let num= parseInt(arr[i]);
suma += num;
}
return suma;
}
function mean (arr) {
let average = sum(arr) /arr.length;
return average;
}
Example 4: call function javascript
function sayHello(msg){
console.log("Hello, " + msg);
}
sayHello("Norris");