+ | ||||||||||
Type | operator | |||||||||
Dictionary | LCS | |||||||||
Library | LiveCode Script | |||||||||
Syntax |
| |||||||||
Summary | Adds two numbers. | |||||||||
Introduced | 1.0 | |||||||||
Changes | The option to add arrays was introduced in version 1.1. In previous versions, only single numbers could be used with the + operator. | |||||||||
OS | mac, windows, linux, ios, android | |||||||||
Platforms | desktop, server, mobile | |||||||||
Parameters |
| |||||||||
Example |
| |||||||||
Related | Keyword: element Operator: -, () Command: union Function: sum Glossary: operator, array, command, element, math operation | |||||||||
Description | Use the + (plus) operator to add two numbers, or to add two arrays containing numbers. To add a number to the contents of a container, use the add command instead. If either number1 or number2 is an array, each of the array elements must be a number. If a number is added to an array, the number is added to each element. If an array is added to an array, both arrays must have the same number of elements and the same dimension, and each element in one array is added to the corresponding element of the other array. If an element of one array is empty, the + operator treats its contents as zero. If a math operation on finite inputs produces a non-finite output, an execution error is thrown. See math operations for more information. | |||||||||
Tags | math |