Functions are modules of code that are used for accomplishing a certain task programmatically.
With few exceptions, functions can be used in the following JavaScript code panels in interactions:
- Pre-Process Code
- Post-Process Code
- Process User Response
For info on the order of operations (i.e., which code is run when), see this section.
Requirements
Important notes
- Function names are case-sensitive in the JavaScript.
- Functions require the
botContext.
prefix. - Functions are scoped ONLY for the JavaScript panel in which they appear.