PowerShell - Operators
Identify the error in this PowerShell code:
$value = 8 $value +== 2 Write-Output $value
$value = 8 $value +== 2 Write-Output $value
+== is not valid in PowerShell; the correct operator for addition assignment is +=.+== -> Option A+=, not +== [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions