PowerShell - Functions
Consider this function:
How would you call it to use the default for 'a' but pass 5 for 'b'?
function Calculate { param([int]$a = 10, [int]$b = 20) $a + $b }How would you call it to use the default for 'a' but pass 5 for 'b'?
