diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-27 23:33:31 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-27 23:34:16 +0100 |
commit | 8d5356295433c6b9c0a4431eb92523b63b0087b7 (patch) | |
tree | 5effc4986664878e060eb49d2124914983073041 | |
parent | e66d519286693a03bf59eaba0a5f29c1c9b15d64 (diff) |
doc: Mention concatenation using the `+` operator in Array
This closes https://github.com/godotengine/godot-docs/issues/2452.
-rw-r--r-- | doc/classes/Array.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml index a294967fc9..234949277a 100644 --- a/doc/classes/Array.xml +++ b/doc/classes/Array.xml @@ -14,6 +14,12 @@ array[2] = "Three" print(array[-2]) # Three. [/codeblock] + Arrays can be concatenated using the [code]+[/code] operator: + [codeblock] + var array1 = ["One", 2] + var array2 = [3, "Four"] + print(array1 + array2) # ["One", 2, 3, "Four"] + [/codeblock] Arrays are always passed by reference. </description> <tutorials> |