Instead of just assigning/copying the value of var b to var a via a = b;
,
I‘d like to make a
‚link‘ to b
, so that when a is changed, actually b is changed and when a is used, actually b is used, so to say. Is that possible?
(You could call it a reference).
Thanks in advance.