echo
  • 30 Oct 2020
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

echo

  • Dark
    Light
  • PDF

Article summary

Description

Responds with a simple echo message.


Input Parameters

NameTypeRequiredDescription
messageTextYesInput 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.


What's Next