DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Arrays / Lists — Example 45

Quick explanation + ready code for: Arrays / Lists.

PowerShell Arrays / Lists Back to examples
Back to language
Syntax: Arrays / Lists in PowerShell. ID: #45

Code

$arr=@(19,20,21)
$arr | ForEach-Object { $_ }

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.