PowerShell - Automation Patterns
Consider this PowerShell code:
What will be the output?
$baseline = @('X','Y','Z')
$current = @('X','Y','W')
Compare-Object -ReferenceObject $baseline -DifferenceObject $currentWhat will be the output?
