PowerShell - Control Flow
How can you modify this for loop to skip printing the number 3?
for ($i=1; $i -le 5; $i++) { Write-Output $i }How can you modify this for loop to skip printing the number 3?
for ($i=1; $i -le 5; $i++) { Write-Output $i }if condition to skip printing when $i is 3.if statement to continue when $i equals 3 -> Option D15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions