We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d49d3 commit cbd575fCopy full SHA for cbd575f
topics/about_assignment.js
@@ -4,13 +4,13 @@ $(document).ready(function(){
4
module("About Assignment (topics/about_assignment.js)");
5
6
test("local variables", function() {
7
- var temp = __;
+ var temp = 1;
8
equals(1, temp, "Assign a value to the variable temp");
9
});
10
11
test("global variables", function() {
12
temp = 1;
13
- equals(temp, window.__, 'global variables are assigned to the window object');
+ equals(temp, window.temp, 'global variables are assigned to the window object');
14
15
16
0 commit comments