Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Source Code

Code Block
languagejs
function execute() {
  let out = '';

  for (let i = 0; i < inPorts.length; i ++= 1) {
    if (inPorts[i].value) {
      out += inPorts[i].value;
   } }
  }

  return [out];
}

...

In Ports

Position

Name

Message Type

Description

1

String A

String

This port is being used to receive a message containing a string for the 'String Merge' Object. The object executes when a string is received.

2

String B

String

This port is being used to receive a message containing a string for the 'String Merge' Object. The object executes when a string is received.

3

String C

String

This port is being used to receive a message containing a string for the 'String Merge' Object. The object executes when a string is received.

4

String D

String

This port is being used to receive a message containing a string for the 'String Merge' Object. The object executes when a string is received.

...