Concept Flow - Default parameter values
Function call
Check if argument provided?
No→Use default value
Yes
Use provided argument
Execute function body with argument
Return result or complete
When calling a function, Swift checks if an argument is given. If not, it uses the default value. Then it runs the function with that value.