JavaScript Clean Code ðŸ›
Use meaningful and pronounceable variable names 💡
Bad :
Good :
#JSTips #CleanCode
@ProgrammingTip
Use meaningful and pronounceable variable names 💡
Bad :
const yyyymmdstr = moment().format('YYYY/MM/DD');Good :
const currentDate = moment().format('YYYY/MM/DD');#JSTips #CleanCode
@ProgrammingTip