a plus b: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 39: | Line 39: | ||
[[Array]]<br>_result = [1] '''+''' [2] ........ _result is [1,2] | [[Array]]<br>_result = [1] '''+''' [2] ........ _result is [1,2] | ||
[[Category:Command_Group:_Math]] | [[Category:Command_Group:_Math|#]] | ||
[[Category:Command_Group:_Variables]] | [[Category:Command_Group:_Variables|#]] |
Revision as of 21:13, 9 August 2006
a + b
Operand types:
Type of returned value:
Description:
For numbers: a added to b.
For strings: All the characters in a and the characters in b are added together.
For arrays: Contents of a and the contents of b are added together.
See also. Array
Examples:
Number
_result = 1 + 2 ........ _result is 3
String
_result = "He" + "llo" ........ _result is "Hello"
Array
_result = [1] + [2] ........ _result is [1,2]