PowerShell - Working with Objects
You run this code:
But you get an error. What is the likely cause?
$list1 = 'apple', 'banana', 'cherry'
$list2 = 'banana', 'cherry', 'date'
Compare-Object $list1 $list2 -IncludeEqual
But you get an error. What is the likely cause?
