clean-codejs-functions

安装量: 93
排名: #8694

安装

npx skills add https://github.com/damianwrooby/javascript-clean-code-skills --skill clean-codejs-functions

Clean Code JavaScript – Function Patterns Table of Contents Single Responsibility Function Size Parameters Side Effects Single Responsibility // ❌ Bad function handleUser ( user ) { saveUser ( user ) ; sendEmail ( user ) ; } // ✅ Good function saveUser ( user ) { } function notifyUser ( user ) { } Function Size Keep functions small (ideally < 20 lines). Parameters // ❌ Bad function createUser ( name , age , city , zip ) { } // ✅ Good function createUser ( { name , age , address } ) { } Side Effects // ❌ Bad let total = 0 ; function add ( value ) { total += value ; } // ✅ Good function add ( total , value ) { return total + value ; }

返回排行榜