plus a – Talk

From Bohemia Interactive Community
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Another example for arrays:
a=[1,2,3];
b=a;
a=[4,5,6];
// this means b is now [4,5,6] as well!

// or ...
a=[1,2,3];
b=+a;
a=[4,5,6];
// this means b is still [1,2,3]
--Doolittle 18:40, 8 July 2007 (CEST)