Global
This part of the documentation describes the global objects and methods available in the Javascript console.
Global Methods
exec(expression)
Example
> exec("console.log(10 + 10)")
// Output: 20runScript(filePath) (alias: rs)
Example
> runScript("file.js")
// Output: 20console.log(10 + 10)pp(obj)
Example
Last updated
Was this helpful?