building a function js code example
Example 1: create function javascript
function myFunction(p1, p2) {
return p1 * p2; // The function returns the product of p1 and p2
}
Example 2: How to create a function in javascript
function addfunc(a, b) {
return a + b;
// standard long function
}
addfunc = (a, b) => { return a + b; }
// cleaner faster way creating functions!