PowerShell: Filter Array
(1,2,3,4,5).where({$_ -gt 3}) # return (4,5)
another way to filter array is by the -eq
operator.
[see Test Equality]
(1,2,3,4,5).where({$_ -gt 3}) # return (4,5)
another way to filter array is by the -eq
operator.
[see Test Equality]