File size: 1,290 Bytes
780c9fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
---
title: debugger
slug: Web/JavaScript/Reference/Statements/debugger
page-type: javascript-statement
browser-compat: javascript.statements.debugger
sidebar: jssidebar
---
The **`debugger`** statement invokes any available debugging
functionality, such as setting a breakpoint. If no debugging functionality is available,
this statement has no effect.
## Syntax
```js-nolint
debugger;
```
## Examples
### Using the debugger statement
The following example shows code where a `debugger` statement has been
inserted, to invoke a debugger (if one exists) when the function is called.
```js
function potentiallyBuggyCode() {
debugger;
// do potentially buggy stuff to examine, step through, etc.
}
```
When the debugger is invoked, execution is paused at the `debugger`
statement. It is like a breakpoint in the script source.

## Specifications
{{Specifications}}
## Browser compatibility
{{Compat}}
## See also
- [The Firefox JavaScript Debugger¶](https://firefox-source-docs.mozilla.org/devtools-user/debugger/index.html) in the Firefox source docs
|