Round to an integer

Description

round(x)

Inputs

  • Value

Outputs

  • Rounded value

Algorithm

/**
 * Round to an integer: round(x)
 *
 * @param x1 Value
 * @return {Array}
 */
function neuron620(x1)
{
return[Math.round(Number(x1))]
}

console.log(neuron620(730));

Create your family tree for free