Sometimes, it is possible to give a parameter in a function a default value. In this case, we do not specify the parameter as a mandatory one (if we do, the function will disregard the default value and prompt for a value anyway).
In this recipe, we will revisit the count function and focus on the default value.