Hi guys,
I'm trying to understood to the powershell array. And i'm really confused.
what is the different between:
$a = 1,2,3,4
$a = @(1,2,3,4) or $a = @{1,2,3,4} --> What is the different between '@()' and '@{}' brackets?
Or when should i use @() instead of basic $a = (1..4) ?