π»Console
Provides access to the console.
Methods
console.debug()
console.debug()Outputs a debug message to the console.
console.debug("This is a debug message")console.error()
console.error()Outputs an error message to the console.
console.error("This is an error message")console.info()
console.info()Outputs an informative message to the console.
console.info("This is an info message")console.log()
console.log()Outputs a message to the console for general logging information.
console.log("This is a log message")console.warn()
console.warn()Outputs a warning message to the console.
console.warn("This is a warning message")Last updated