console.log

From SmartBots Developers Docs
Jump to: navigation, search

Logs data to the runtime log.

console.log("My object value is", myObject);

Reference

This command accepts the following parameters:

Variable Required Description


Input:
arguments... yes any number of arguments to be logged to the log. Objects can be translated to a string using JSON.stringify()
Output:
result This function does not return anything

Examples