Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ If you use `$null` in a string, then it's a blank value (or empty string).

```powershell
PS> $value = $null
PS> Write-Output "The value is $value"
The value is
PS> Write-Output "'The value is $value'"
'The value is '
```

This is one of the reasons that I like to place brackets around variables when using them in log
Expand Down
Loading