Skip to content

Commit 8b4ca37

Browse files
committed
Resolve about assignment
1 parent 1e178b1 commit 8b4ca37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

topics/about_assignment.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
module("About Assignment (topics/about_assignment.js)");
33

44
test("local variables", function() {
5-
var temp = __;
5+
var temp = 1;
66
equals(1, temp, "Assign a value to the variable temp");
77
});
88

99
test("global variables", function() {
1010
temp = 1;
11-
equals(temp, window.__, 'global variables are assigned to the window object');
11+
equals(temp, window.temp, 'global variables are assigned to the window object');
1212
});

0 commit comments

Comments
 (0)