What is the difference between
myArr1 => \@existingarray
and
myArr2 => [
@existingarray
]
I am assigning the @existingarray to a element in a hash map.
I mean what exactly internally happens. Is it that for the first one, it points to the same array and for the second array it creates a new array with the elements in the @existingarray
Thanks in advance