💻
Console
Provides access to the console.
Outputs a debug message to the console.
console.debug("This is a debug message")
Outputs an error message to the console.
console.error("This is an error message")
Outputs an informative message to the console.
console.info("This is an info message")
Outputs a message to the console for general logging information.
console.log("This is a log message")
Outputs a warning message to the console.
console.warn("This is a warning message")
Last modified 6mo ago