Sys.StringBuilder append Method
Appends a copy of a specified string to the end of the Sys.StringBuilder instance.
var stringBuilderVar = new StringBuilder();
stringBuilderVar.append(text);
Arguments
- text
The string to append to the end of the StringBuilder instance.
Remarks
Use the append method to append a copy of a specified string to the end of a StringBuilder instance. If text is an empty string, null, or undefined, the StringBuilder instance remains unchanged.