Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 361 Bytes

only-arrow-functions.md

File metadata and controls

13 lines (7 loc) · 361 Bytes

Pattern: Use of non-arrow function

Issue: -

Description

Disallows traditional (non-arrow) function expressions.

Rationale: Traditional functions don’t bind lexical scope, which can lead to unexpected behavior when accessing this.

Further Reading