10.3.1. Sintaxis de funciones
//To create a function, use the following syntax:
function myFunction(parameter1, parameter2,..., parameterN) {
// function body
}
Tough Tortoise