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