Skip to content

Various small fixes on the JavaScript 101 Scope page. #355

New issue

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

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More space.
  • Loading branch information
Markus Amalthea Magnuson committed Apr 18, 2013
commit 84037dcc00a4a39d1d5cd647a850b51e093fb72c
1 change: 1 addition & 0 deletions page/javascript-101/scope.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ JavaScript also creates a __Local Scope__ inside each function body. For example
function myFunc() {
var x = 5;
};

console.log( x ); // ReferenceError: x is not defined
```

Expand Down