Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 264 Bytes

return-undefined.md

File metadata and controls

11 lines (6 loc) · 264 Bytes

Pattern: Malformed return in function

Issue: -

Description

Prefer return; in void functions and return undefined; in value-returning functions.

Further Reading