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