|
Post by Partenope on Mar 20, 2021 15:56:21 GMT
Hi everyone!
Could someone please explain me what append and prepend functions mean, and how they can be used?
Many thanks in advance
|
|
|
Post by danaleighton on Apr 8, 2021 17:29:46 GMT
Could someone please explain me what append and prepend functions mean, and how they can be used? Append and prepend are used for adding elements to an array. So append will add a new element to the end of the array; prepend will add one at the beginning. See this code doe example: set &&arrayVar append $x This will add the contents of $x to the end of the array &&arrayVar
|
|
|
Post by Partenope on Apr 9, 2021 21:26:29 GMT
Thank you very much! This is very clear now to me! I am very grateful to you! Thank you!
|
|