notebook — log()
Description
The log() method of the notebook object displays a value below the active cell. It can be used to inspect variables, objects, and calculation results.
Signature
notebook.log(value)- Scope
notebook- Family
display- Returns
none
Argument
value(any)- The value to display below the active cell.
Example
// display a log
notebook.log("Im a log");