PowerShell - Working with Objects
Given the code:
What will be the output?
$a = 'apple','banana','cherry'
$b = 'banana','cherry','date'
Compare-Object -ReferenceObject $a -DifferenceObject $b
What will be the output?
