// One parameter, one return value
function discArea(r) {
return Math.PI * r*r;
}
// Two parameters, no return value
function printMin(a,b) {
if( a < b ) {
console.log(a);
}
else {
console.log(b);
}
}
const F1 = function(x) { return 2*x*x+4*x+1; }
const F2 = function(x) { return -3*x*x+7*x-2; }
const currentFunction = F2;
console.log( currentFunction(8) );
const F = (x) => 2*x*x + 4*x +1;
console.log( F(4) );