Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 233 Bytes

small-functions.md

File metadata and controls

7 lines (5 loc) · 233 Bytes

Small Functions

Keeping functions small and breaking out other functionality will help keep code maintainable and easier to unit test. Avoid large functions that try to do more than one job.

JavaScript