Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
DRY
The last principle we will be discussing in this workshop is DRY, which stands for Don't Repeat Yourself.
As programmers, we are often so focused on writing code that works that we overlook situations where our code is repetitive.
The concept of keeping your code DRY is important to keep in mind both when writing and refactoring your code.
Project Files
Let's ...