What happens if I call a function with more arguments than it is defined to accept?
JavaScript doesn’t have the concept of a fixed parameter list. For your own functions you can always specify as many parameters as you want and pass in as many as you want which ever type you want. For built-in functions, which correlate to native code, it depends. You asked on what it depends: Let’s look … Read more