function average(a, b) {
return ((a + b) / 2);
}
var x = 5;
var y = 10;
alert(average(x, y));
Le funzioni sono utili per creare un programma e ripeterlo più volte nel codice.
function average(a, b) {
return ((a + b) / 2);
}
var x = 5;
var y = 10;
alert(average(x, y));
Le funzioni sono utili per creare un programma e ripeterlo più volte nel codice.