Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IISResetMe/571ac648488e7b398d4cbcdc774f502b to your computer and use it in GitHub Desktop.
Save IISResetMe/571ac648488e7b398d4cbcdc774f502b to your computer and use it in GitHub Desktop.
$array = 1..10
for ($i = 0; $i -lt $array.Length; $i++) {
Write-Host "Loop iteration $($i + 1): #$($array[$i])"
if ($i -eq $array.Length - 1) { Write-Host "Last loop!" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment