partialRight + lodash

declare a function:

we give our function to partialRight, along with
the parameter that goes on the right side.

Then use the partial function:

Ricky, Good Morning!

Notice we gave two parameters in the partialRight. This means we already decided that other two parameters (message, extra) have already been dictated when we call partialRight.

Therefore, we have already decided that when using the partial function, we only take ONE parameter (name).

Of course we can change this to only providing the third parameter, and having the user provide two parameters for the partial function.

ricky, Good Morning???