You can easily call a JavaScript function with more arguments than the function needs, but the extra arguments will be just ignored by function execution.
== Noncompliant Code Example
----
function say(a, b) {
print(a + " " + b);
}
say("hello", "world", "!"); // Noncompliant; last argument is not used