We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in https://leanpub.com/javascript-allonge/read#leanpub-auto-limits
limits Named function expressions have limits. Here’s one such limit: You can do simple recursion, but not mutual recursion. For example:
limits
Named function expressions have limits. Here’s one such limit: You can do simple recursion, but not mutual recursion. For example:
var even = function (num) even { return (num === 0) || odd( num - 1) }; var odd = function (num) odd { return (num > 0) && even(num - 1) };
shouldn't those functions be
var even = function even (num) { return (num === 0) || odd( num - 1) }; var odd = function odd (num) { return (num > 0) && even(num - 1) };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in https://leanpub.com/javascript-allonge/read#leanpub-auto-limits
shouldn't those functions be
The text was updated successfully, but these errors were encountered: