We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Powershell does not check for null inside an array.
$a = 1,2,$null,4 $a.contains($null) $null -eq $a #per doc this would return true.