The Art of Clean Code
Dummy text
Clean code is code that's easy to read, understand, and modify. It's not about being clever—it's about being clear.
Key Principles
Readability matters - Code is read far more often than it's written.
Functions should do one thing - If you can't describe what a function does in one sentence, it's doing too much.
Names should reveal intent - Good names make comments unnecessary.
3rd heading
sdsd
- lol
inline code, nice huh?
sdds
and the 4th
- yes i like this
In Practice
// Bad
function f(x) {
return x * 2;
}
// Good
function doubleValue(value) {
return value * 2;
}Here is a little meme about it:

Small improvements compound over time.