Default function parameters allow formal parameters to be initialized with default values if no value or undefined is passed.
Example:
function multiply(a, b = 1) { return a * b; }