Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

Assignment Operator (=)

Used to assign a value to a variable or property.

Synopsis

variable = value

Arguments

The = operator syntax has these parts:

variable Any variable or any writable property.
value Any numeric or string literal, constant, or expression.

Description

The name on the left side of the equal sign can be a simple scalar variable or an element of an array. Properties on the left side of the equal sign can only be those properties that are writable at runtime.

See Also

FeedbackOpens in a new tab