9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
function thisIsAFunctionWithAVeryLongNameAndWayTooManyParameters(
|
|
thisIsTheFirstParameter, andThisOneIsRelatedToIt,
|
|
butNotThisOne,
|
|
andNeitherThis,
|
|
inFactThereArentThatManyParameters,
|
|
) {
|
|
throw null;
|
|
}
|