String.concat

String.concat

String.concat

Function

Concatenate the current string and all parameters in sequence into a new string.

Syntax

Parameters

ParametersTypeRequiredDefault valueDescription
valueNAnyNoNoneThe value to be spliced will be converted to a string first when called.

Return value

TypeDescription
StringReturns the new string after concatenation.

Example

Notes

  • The original string is not modified.
  • Array and object parameters will be concatenated according to BT JSON string rules.