String Concatenate
caution
This section refers to a feature that will only be available in the v0.2.0 of Meta-System
Module Info:
moduleType: "internal",
moduleName: "stringConcat"
Description
The stringConcat function receives a number of strings and concatenates all of the string in order.
Inputs
| Name | Type | Required |
|---|---|---|
strings | object | ✔ |
Outputs
| Name | Type |
|---|---|
result | string |
This functions will, if possible, to convert any given values to a string
Examples
| Inputs | Outputs |
|---|---|
| strings | result |
{ name: "John", lastName: "Wick" } | "JohnWick" |
{ name: "John ", lastName: "Wick" } | "John Wick" |
{ start: "He is ", age: 16 } | "He is 16" |