- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Description
Responds with a simple echo message.
Input Parameters
Name | Type | Required | Description |
---|---|---|---|
message | Text | Yes | Input message |
Returns
Type: Text
Returns a message that is the exact same as the provided input message except with an 'Echo: ' prefix.
Examples
// observe 'Echo: hello' in the debugger
var response = debug.echo("hello");
debug.log(response);
Remarks
This is not a very useful function, but can be used to test basic communications with the app runtime.