We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56543f5 commit abd75b0Copy full SHA for abd75b0
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