|
|
|
|
|
by taeric
1553 days ago
|
|
I typically see "self documenting code" refer to code where function and variable names indicate the code without added comments. Think: function square(x) ...
Versus function f(a) ...
Often includes all functions as named things, with little to no lambda usage, since names are seen as for the programmer, not for the computer. |
|
Compare
To In addition to other problems with functions, you now have a potential for combinatorial explosion doing it this way.