Name

+

Description

This operator is used to add two operands together or to add time to a date value. It is also used in scientific notation to denote a real that is greater than or equal to 10,000.0, as in 1.0E+9 (this number is one billion; see the description of the real value type in Chapter 3). The addition operator is not used to concatenate two strings (& is responsible for that); neither does AppleScript provide anything like a ++ operator. The following is an example statement for incrementing a numerical variable in AppleScript:

set aNum to aNum + 1

Here are some examples of adding time to dates.