Round down to an integer

Description

floor(x)

Inputs

  • Value

Outputs

  • Rounded value

Algorithm

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

console.log(neuron625(806));

Create your family tree for free