When a parameter is declared with a default value, its existence in the function's arguments array will be _________.

  • TRUE
  • FALSE
  • undefined
  • nan
When a parameter is declared with a default value, its existence in the function's arguments array will be false. Default parameters do not appear in the arguments object, and accessing them through the arguments object will return undefined.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *