We can also give functions a default parameter. If we do not pass in an argument when calling the function, the default parameter will be used instead.

Sweet, both parameters will be int-type variables.

We didn't declare a second argument when calling multiplyBy() so the default of 2 was used for x.

Whoops! What type do you think we should declare x as given the default value we have?