Assignment operator
Syntax:
<Target> = <Source>;
Parameters:
<Target>
Any writable variable of 1C:Enterprise script object property can be the <Target>.
<Source>
An expression whose value is assigned.
Description:
The assignment operator ("=" symbol) assigns the <Source> value to the <Target> variable.
Example:
A = B; |