---
url: /docs/guide/usage/linter/rules/eslint/no-debugger.md
---

### What it does

Checks for usage of the `debugger` statement.

### Why is this bad?

`debugger` statements do not affect functionality when a debugger isn't attached.
They're most commonly an accidental debugging leftover.

### Examples

Examples of **incorrect** code for this rule:

```javascript
async function main() {
  const data = await getData();
  const result = complexCalculation(data);
  debugger;
}
```

Examples of **correct** code for this rule:

```javascript
async function main() {
  const data = await getData();
  const result = complexCalculation(data);
}
```

## How to use

## Version

This rule was added in v0.0.3.

## References
