teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

この例において仮引数が不要だったため。

2018/05/10 14:52

投稿

IST
IST

スコア14

title CHANGED
File without changes
body CHANGED
@@ -94,10 +94,10 @@
94
94
 
95
95
  (function () {
96
96
  function methodC() {
97
- return true;
97
+ //
98
98
  }
99
99
  function methodD() {
100
- return true;
100
+ //
101
101
  }
102
102
  ClassA.namespace("space_B").method_CD = {
103
103
  methodC: methodC,
@@ -132,11 +132,11 @@
132
132
 
133
133
  (function () { //クラス名の追加、削除
134
134
  var space_A = ClassA.namespace("space_A");
135
- function methodA(element, cName) {
135
+ function methodA() {
136
- return true;
136
+ //
137
137
  }
138
- function methodB(element, cName) {
138
+ function methodB() {
139
- return true;
139
+ //
140
140
  }
141
141
  space_A.methodA = methodA;
142
142
  space_A.methodB = methodB;