Standard Library
Console
Methods
console.debug()
Outputs a debug message to the console.
console.debug("This is a debug message")
console.error()
Outputs an error message to the console.
console.error("This is an error message")
console.info()
Outputs an informative message to the console.
console.info("This is an info message")
console.log()
Outputs a message to the console for general logging information.
console.log("This is a log message")
console.warn()
Outputs a warning message to the console.
console.warn("This is a warning message")