| JavaScript |
|---|
| ToString() |
| JavaScript |
|---|
// Gets the built string.
ToString()
{
const tb = new LJCTextBuilder();
tb.Text("This is some text.");
// Example Method:
const result = tb.ToString();
// result;
// "This is some text."
}
|