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