assign
  • 21 Jun 2022
  • Dark
    Light
  • PDF

assign

  • Dark
    Light
  • PDF

Article Summary

assign Task Purpose

The assign task is used to copy the values (of all enumerable own properties) from a source object to a target object. It will return a modified target object, which has properties and values pushed from the source object. Of note, the target object is the first parameter and is also used as the return value (targetObject).

Potential Use Case

Suppose you have an ordered list of emails in a collection and you want to assign them into a numbered list. The target object and the source object will be given the numerical assignments in the final list.

Properties

Input and output properties are shown below.

Incoming Type Description
target Object Required. The target object to apply the source properties to.
sourceN Object Required. The source object containing the properties to copy.


Outgoing Type Description
targetObject Object The target object.

Example

In the IAP example below:

  • Property "a" has been assigned the value of "1" in the target object.

  • Property "b" has been assigned the value of "2" in the sourceN object.

    assign-ex01

  • The source object "b:2" is copied to the target object and the targetObject returns the combined variables of "a":1,"b":2.

    assign-ex02


Was this article helpful?

Changing your password will log you out immediately. Use the new password to log back in.
First name must have atleast 2 characters. Numbers and special characters are not allowed.
Last name must have atleast 1 characters. Numbers and special characters are not allowed.
Enter a valid email
Enter a valid password
Your profile has been successfully updated.