1

While PowerShell has nice syntaxes like JavaScript's filter, map, reduce is there a syntax which is equivalent to some?

Takuya HARA
  • 499
  • 1
  • 3
  • 17

1 Answers1

2

You could try using LINQ in PowerShell and then you can use LINQ Any which "Determines whether any element of a sequence exists or satisfies a condition."

alexanderbird
  • 3,847
  • 1
  • 26
  • 35