> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Misplaced-Break-Or-Continue

#### Sourcery rule id: `misplaced-break-or-continue`

#### Description

This `break` or `continue` does not refer to any valid loop or statement.


#### Match

```javascript
break;
```



#### Explanation

A `break` or `continue` cannot be outside a suitable loop or block statement.
