10.3.1. Syntaxe de fonction

//To create a function, use the following syntax:

function myFunction(parameter1, parameter2,..., parameterN) {

   // function body

}
Tough Tortoise