You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$tip.Title = 'When checking for $null, put $null on the left'
$tip.TipText = @'
When checking if a variable or expression is null, put the $null on the left side of the comparison.
If the variable you are checking is an array that contains a null value, the comparison may not return the expected result if you put the $null on the right side of the comparison.
Do this: if ($null -eq $variable)
Not this: if ($variable -eq $null)
'@
$tip.Example = 'if ($null -eq $variable) { "The variable really is null." }'