What is the purpose of the arguments.length property in JavaScript functions?
arguments.length
It indicates the maximum number of arguments the function can accept.
It represents the length of the function's code block.
It returns the number of arguments passed to the function.
It returns the total number of parameters defined in the function.