ReadonlyConsoleThe console.assert() static method writes an error message to the console if the assertion is false. If the assertion is true, nothing happens.
Optionalcondition: booleanOptionalcondition: booleanThe console.clear() static method clears the console if possible.
The console.clear() static method clears the console if possible.
The console.count() static method logs the number of times that this particular call to count() has been called.
Optionallabel: stringThe console.count() static method logs the number of times that this particular call to count() has been called.
Optionallabel: stringThe console.countReset() static method resets counter used with console.count().
Optionallabel: stringThe console.countReset() static method resets counter used with console/count_static.
Optionallabel: stringThe console.debug() static method outputs a message to the console at the "debug" log level. The message is only displayed to the user if the console is configured to display debug output. In most cases, the log level is configured within the console UI. This log level might correspond to the Debug or Verbose log level.
The console.debug() static method outputs a message to the console at the 'debug' log level.
The console.dir() static method displays a list of the properties of the specified JavaScript object. In browser consoles, the output is presented as a hierarchical listing with disclosure triangles that let you see the contents of child objects.
Optionalitem: anyOptionaloptions: anyThe console.dir() static method displays a list of the properties of the specified JavaScript object.
Optionalitem: anyOptionaloptions: anyThe console.dirxml() static method displays an interactive tree of the descendant elements of the specified XML/HTML element. If it is not possible to display as an element the JavaScript Object view is shown instead. The output is presented as a hierarchical listing of expandable nodes that let you see the contents of child nodes.
The console.dirxml() static method displays an interactive tree of the descendant elements of the specified XML/HTML element.
The console.error() static method outputs a message to the console at the "error" log level. The message is only displayed to the user if the console is configured to display error output. In most cases, the log level is configured within the console UI. The message may be formatted as an error, with red colors and call stack information.
The console.error() static method outputs a message to the console at the 'error' log level.
The console.group() static method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console.groupEnd() is called.
The console.group() static method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console/groupEnd_static is called.
The console.groupCollapsed() static method creates a new inline group in the console. Unlike console.group(), however, the new group is created collapsed. The user will need to use the disclosure button next to it to expand it, revealing the entries created in the group.
The console.groupCollapsed() static method creates a new inline group in the console.
The console.groupEnd() static method exits the current inline group in the console. See Using groups in the console in the console documentation for details and examples.
The console.groupEnd() static method exits the current inline group in the console.
The console.info() static method outputs a message to the console at the "info" log level. The message is only displayed to the user if the console is configured to display info output. In most cases, the log level is configured within the console UI. The message may receive special formatting, such as a small "i" icon next to it.
The console.info() static method outputs a message to the console at the 'info' log level.
The console.log() static method outputs a message to the console.
The console.log() static method outputs a message to the console.
This method does not display anything unless used in the inspector. The console.profile()
method starts a JavaScript CPU profile with an optional label until profileEnd
is called. The profile is then added to the Profile panel of the inspector.
console.profile('MyLabel');
// Some code
console.profileEnd('MyLabel');
// Adds the profile 'MyLabel' to the Profiles panel of the inspector.
Optionallabel: stringThis method does not display anything unless used in the inspector. Stops the current JavaScript CPU profiling session if one has been started and prints the report to the Profiles panel of the inspector. See profile for an example.
If this method is called without a label, the most recently started profile is stopped.
Optionallabel: stringThe console.table() static method displays tabular data as a table.
OptionaltabularData: anyOptionalproperties: string[]The console.table() static method displays tabular data as a table.
OptionaltabularData: anyOptionalproperties: string[]The console.time() static method starts a timer you can use to track how long an operation takes. You give each timer a unique name, and may have up to 10,000 timers running on a given page. When you call console.timeEnd() with the same name, the browser will output the time, in milliseconds, that elapsed since the timer was started.
Optionallabel: stringThe console.time() static method starts a timer you can use to track how long an operation takes.
Optionallabel: stringThe console.timeEnd() static method stops a timer that was previously started by calling console.time().
Optionallabel: stringThe console.timeEnd() static method stops a timer that was previously started by calling console/time_static.
Optionallabel: stringThe console.timeLog() static method logs the current value of a timer that was previously started by calling console.time().
Optionallabel: stringThe console.timeLog() static method logs the current value of a timer that was previously started by calling console/time_static.
Optionallabel: stringThe console.timeStamp() static method adds a single marker to the browser's Performance tool (Firefox bug 1387528, Chrome). This lets you correlate a point in your code with the other events recorded in the timeline, such as layout and paint events.
Optionallabel: stringOptionallabel: stringThe console.trace() static method outputs a stack trace to the console.
The console.trace() static method outputs a stack trace to the console.
The console.warn() static method outputs a warning message to the console at the "warning" log level. The message is only displayed to the user if the console is configured to display warning output. In most cases, the log level is configured within the console UI. The message may receive special formatting, such as yellow colors and a warning icon.
The console.warn() static method outputs a warning message to the console at the 'warning' log level.
The
consoleobject provides access to the debugging console (e.g., the Web console in Firefox).MDN Reference