We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e178b1 commit 8b4ca37Copy full SHA for 8b4ca37
topics/about_assignment.js
@@ -2,11 +2,11 @@
2
module("About Assignment (topics/about_assignment.js)");
3
4
test("local variables", function() {
5
- var temp = __;
+ var temp = 1;
6
equals(1, temp, "Assign a value to the variable temp");
7
});
8
9
test("global variables", function() {
10
temp = 1;
11
- equals(temp, window.__, 'global variables are assigned to the window object');
+ equals(temp, window.temp, 'global variables are assigned to the window object');
12
0 commit comments