How would I skip optional arguments in a function call?

Your post is correct.

Unfortunately, if you need to use an optional parameter at the very end of the parameter list, you have to specify everything up until that last parameter. Generally if you want to mix-and-match, you give them default values of '' or null, and don’t use them inside the function if they are that default value.

Leave a Comment