Tagged Questions
6
votes
3answers
348 views
Should I nest functions in languages that allow me to do that or should I rather avoid it?
In JavaScript, PL/SQL and some other languages, functions can be nested, i.e. declared within another function. This could be used to break a large function into smaller pieces, but keep those pieces ...