PowerShell - Working with Objects
Given the following code:
What is the output?
$a = 1, 2, 3, 4
$b = 3, 4, 5, 6
Compare-Object -ReferenceObject $a -DifferenceObject $b
What is the output?
