回答編集履歴

1

修正しました。

2015/10/19 08:25

投稿

Lhankor_Mhy
Lhankor_Mhy

スコア36104

test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  this.bar = null;
12
12
 
13
- this.baz = function(){return Hoge.xyzzy(foo)};
13
+ this.baz = function(){return Hoge.corge(foo)};
14
14
 
15
15
  this.quux = function(){return this.qux(foo)};
16
16
 
@@ -22,7 +22,9 @@
22
22
 
23
23
  };
24
24
 
25
+ Hoge.xyzzy = function(self){return self.foo}
26
+
25
- Hoge.xyzzy = function(x){return x}
27
+ Hoge.corge = function(x){return x}
26
28
 
27
29
 
28
30