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
From the guide:
// Named function expression. var foo = function() { // Do something. };
This is actually a variable assigned to an anonymous function.
The text was updated successfully, but these errors were encountered:
Indeed. The expression should be of the form:
var foo = function foo() { ... };
To be honest, I don't think named function expressions are a JS101 topic.
Sorry, something went wrong.
I agree on that. I'il open a PR.
Update: Opened #578
javascript-101/functions.md
483e237
javascript-101/functions.md: fix wrong comment
24ae183
Closes jquerygh-578 Fixes jquerygh-415
d4363b9
Closes gh-578 Fixes gh-415
No branches or pull requests
From the guide:
This is actually a variable assigned to an anonymous function.
The text was updated successfully, but these errors were encountered: