|
|
|
|
|
by eksapsy
1071 days ago
|
|
nobody hates anything. we don't hate while/for/etc loops. We should just be careful when using them just like any other nested structure (if/else/while-do/switch/select/etc.) Like if I see
```
for ... {
for ... {
if ... {
} else {
}
// code here ...
}
...
}
``` That is objectively bad code and not readable. Nobody hates anything. Most of us just dont like how people misuse them to write bad code because their managers pressure them. |
|