Clean code is a practice all programmers should apply. Clean code helps us navigate, debug and reuse code with more ease. There are a few principles that distinguishes a clean code and a ‘dirty’ one. Long functions or methods are usually an indicator that it is not efficient. Don’t Repeat Yourself (DRY) means to avoid duplicate code.
1 Comment
Sort: