¿Cuál es la diferencia entre la función con los parámetros y una función sin parámetros en JavaScript?

Answer 54a4af4295e3786fd2000975. A function with argument, as in function(something) is to return a value after processing within the function. A function with no argument, eg function(), is to perform a task with no value returned. In this case, the function acts like a procedure.
SED