質問編集履歴

1

インデントをつけました

2018/10/22 03:28

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -4,15 +4,15 @@
4
4
 
5
5
 
6
6
 
7
- {name: "にんじゃわんこ", age: 14},
7
+ {name: "にんじゃわんこ", age: 14},
8
8
 
9
9
 
10
10
 
11
- {name: "ひつじ仙人", age: 100},
11
+ {name: "ひつじ仙人", age: 100},
12
12
 
13
13
 
14
14
 
15
- {name: "ベイビーわんこ", age: 5},
15
+ {name: "ベイビーわんこ", age: 5},
16
16
 
17
17
 
18
18
 
@@ -26,25 +26,25 @@
26
26
 
27
27
 
28
28
 
29
- console.log("--------------------");
29
+ console.log("--------------------");
30
30
 
31
31
 
32
32
 
33
33
 
34
34
 
35
- const character = characters[i];
35
+ const character = characters[i];
36
36
 
37
37
 
38
38
 
39
39
 
40
40
 
41
- console.log(`名前は${character.name}です`);
41
+ console.log(`名前は${character.name}です`);
42
42
 
43
43
 
44
44
 
45
45
 
46
46
 
47
- console.log(`${character.age}歳です`);
47
+ console.log(`${character.age}歳です`);
48
48
 
49
49
 
50
50