Readability
READ-01 Indent your code
if ($this -gt $that) {
Do-Something -with $that
}if ($this -gt $that)
{
Do-Something -with $that
}foreach ($computer in $computers) {
Do-This
Get-Those
}READ-02 Avoid backticks
Last updated
Was this helpful?