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