A function has parameters a and b, no defaults, and is called with only the argument 7. Which statements are true? Select all that apply.
Explanation
JavaScript allows the call even though it supplies fewer arguments than named parameters. The first parameter receives 7 and the unmatched second parameter receives undefined; neither a mandatory arity error nor an automatic null value is introduced.