Combine Object
Module Info:
moduleType: "internal",
moduleName: "combineObject"
Description
The combineObject function receives two objects and combines both objects into one.
Inputs
| Name | Type | Required |
|---|---|---|
object1 | object | ✔ |
object2 | object | ✔ |
Outputs
| Name | Type |
|---|---|
combined | object |
Examples
| Inputs | Outputs | |
|---|---|---|
| object1 | object2 | combined |
{ name: "John" } | { surname: "Wick" } | { name: "John", surname: "Wick" } |
{ a: "a", b: "b" } | { c: "c" } | { a: "a", b: "b", c: "c" } |