PowerShell - Automation Patterns
Given these two arrays in PowerShell:
What will be the output of
$baseline = @('Setting1', 'Setting2', 'Setting3')
$current = @('Setting1', 'Setting2', 'Setting4')What will be the output of
Compare-Object $baseline $current?