Use Enum Constants instead of Magic numbers?
Loading last updated info...
Using "Magic numbers" in your code makes it confusing and really hard to maintain.
❌ Figure: Bad example - "Magic Number" works, but is a bad idea
✅ Figure: Good example - Add Enum
✅ Figure: Good example - No Magic Number, looks good and is easy to manage