> ## 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.

# Dont-Self-Assign-Variables

#### Sourcery rule id: `dont-self-assign-variables`

#### Description

Assigning a variable to itself has no effect.


#### Match

```javascript
a = a
```



#### Explanation

Assigning a variable to itself has no effect, and is therefore either redundant or a mistake.
