Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 375 Bytes

no-this-assignment.md

File metadata and controls

13 lines (7 loc) · 375 Bytes

Pattern: Unnecessary this assignment

Issue: -

Description

Disallows unnecessary references to this.

Rationale: Assigning a variable to this instead of properly using arrow lambdas may be a symptom of pre-ES6 practices or not managing scope well.

Further Reading