The following statement calls a function named half, which returns a value that is half
that of the argument. (Assume the number variable references a float value.) Write
code for the function.
result = half(number)

Respuesta :

Answer:

function half(number) {

     let result = number/2;

     return result;

}

Explanation: