doc: Mention concatenation using the +
operator in Array
This closes https://github.com/godotengine/godot-docs/issues/2452.
(cherry picked from commit 8d53562954
)
This commit is contained in:
parent
a78bbcf8ce
commit
1191766609
1 changed files with 6 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue