It will ignore extra arguments that are beyond the number of parameters listed in the function definition.
Ex: function argCheck(parameter1, parameter2, parameter3){
console.log(parameter1 + parameter2 + parameter3);}
// Function called with extra arguments
argCheck(1,2,3,4);// Logs 6 (1 + 2 + 3, ignores 4)