Skip to main content

Combine Object

Module Info:

moduleType: "internal",
moduleName: "combineObject"

Description

The combineObject function receives two objects and combines both objects into one.

Inputs

NameTypeRequired
object1object
object2object

Outputs

NameType
combinedobject

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" }