質問編集履歴

2

訂正

2019/10/03 22:55

投稿

roooo
roooo

スコア57

test CHANGED
File without changes
test CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
 
10
10
 
11
- export const hoge = (a_, b_, C_) => {
11
+ export const hoge = (a_, b_, c_) => {
12
12
 
13
13
  console.log(a_, b_, C_);
14
14
 
@@ -50,9 +50,9 @@
50
50
 
51
51
  ```
52
52
 
53
- const hoge = (a_, b_, C_) => {
53
+ const hoge = (a_, b_, c_) => {
54
54
 
55
- console.log(a_, b_, C_);
55
+ console.log(a_, b_, c_);
56
56
 
57
57
  };
58
58
 

1

訂正

2019/10/03 22:55

投稿

roooo
roooo

スコア57

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  ```
26
26
 
27
- import * as A from './A';
27
+ import * as hoge from './A';
28
28
 
29
29
  A.hoge(1,2,3)
30
30