Debugging functions
Functions for debugging expressions.
Console
Console([value1, ..., valueN]?) -> Null
Function bundle: Core
Logs a message in the messages window for debugging purposes. This function can be especially useful for inspecting variable values within a custom function at runtime. Unlike other functions and the return
statement, Console()
doesn't actually return a value; rather, it logs messages in a separate window for inspection purposes only. The successful use of this function has no computational impact on the evaluation of the expression.
Parameter
- [value1, ..., valueN] (Optional): Any - A list of variables, text, number, or dictionary to output in the messages window.
Return value: Null
Example
Prints the value of max
for each iteration of the loop within the function