function java script code example

Example 1: function javascript

var x = myFunction(4, 3);     // Function is called, return value will end up in x

function myFunction(a, b) {
    return a * b;             // Function returns the product of a and b
}

Example 2: js function

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

Example 3: javascript functions

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

Example 4: javascript function

function myFunction() {
  alert("Hello World!");
}
myFunction();

Example 5: js function

var x = 10;

function créerFonction1() {
  var x = 20;
  return new Function("return x;"); // ici |x| fait référence au |x| global
}

function créerFonction2() {
  var x = 20;
  function f() {
    return x; // ici |x| fait référence au |x| local juste avant
  }
  return f;
}

var f1 = créerFonction1();
console.log(f1());          // 10
var f2 = créerFonction2();
console.log(f2());          // 20

Example 6: js function

function MyFunction() {
	/* Function Here */
}