Round up to an integer

Description

ceil(x)

Inputs

  • Value

Outputs

  • Rounded value

Algorithm

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

console.log(neuron626(593));

Create your family tree for free