Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ No textbook is required for this course. All materials are included in this gith

## Technical requirements

Laptop, Chrome browser and a text editor. We recommend Sublime Text 3 for this course becuase its fast, light weight and you can run your JavaScript files in its console with Node.
Laptop, Chrome browser and a text editor. We recommend Sublime Text 3 for this course because its fast, light weight and you can run your JavaScript files in its console with Node.



Expand Down
2 changes: 1 addition & 1 deletion scope/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
expect(ACTUAL === '???').to.be.true;
});

it('if an inner and an outer variable share the same name, and the name is referenced in the inner scope, the inner scope variable masks the variable from the outer scope with the same name. This renders the outer scope variables inaccassible from anywhere within the inner function block', function () {
it('if an inner and an outer variable share the same name, and the name is referenced in the inner scope, the inner scope variable masks the variable from the outer scope with the same name. This renders the outer scope variables inaccessible from anywhere within the inner function block', function () {
var sameName = 'outer';
var fn = function () {
var sameName = 'inner';
Expand Down