how to create a function in js code example

Example 1: functions in javascript

function name( parameter1 ,parameter 2,..)  //name signifies funcname
{
  
}

Example 2: simple javascript function

function idk() {
	alert('This is an alert!')
}
//call the function to make the function run by saying "Name of function + ()"
idk()

Example 3: js function

function name(parameter1, parameter2, parameter3) {
// what the function does
}

Example 4: javascript function

// variable:
var num1;
var num2;
// function:
function newFunction(num1, num2){
	return num1 * num2;
}

Example 5: functions in javascript

function myFunction(var1, var2) {
  return var1 * var2;
}
3
How to create a function in javascriptJavascript By TechWhizKid on Apr 5 2020
function addfunc(a, b) {
  return a + b;
  // standard long function
}

addfunc = (a, b) => { return a + b; }
// cleaner faster way creating functions!

Example 6: javascript functions

function sayHelloTo(to) {
  alert(`Hello ${to}`);
}
sayHelloTo('World from Grepper')