Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Last active September 4, 2015 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guitarrapc/76a4f82644e96624a64b to your computer and use it in GitHub Desktop.
Save guitarrapc/76a4f82644e96624a64b to your computer and use it in GitHub Desktop.
# not null
$array = @($null,1,2);
if ($null -eq $array)
{
"null"
}
else
{
"not null"
}
# not null
$array = @($null,$null,1,2);
if ($null -eq $array)
{
"null"
}
else
{
"not null"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment