Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

console

console is a static object that interacts with the JavaScript console in Revu for displaying debug messages

methods

clear

Secure
No

Clears the console of all debug messages

console.clear()

example:

console.clear()

hide

Secure
No

Hides the JavaScript console in the user interface

console.hide()

example:

console.hide()

println

Secure
No

Outputs a debug message in the JavaScript console

console.println(cMessage)

cMessage: Debug message to output

console.println("Debug message")

show

Secure
No

Shows the JavaScript console in the user interface

console.show()

example:

console.show()