質問編集履歴

1

ご指摘いただいたname大文字とセミコロンを訂正

2021/06/07 15:09

投稿

hiro_ike
hiro_ike

スコア48

test CHANGED
File without changes
test CHANGED
@@ -70,17 +70,17 @@
70
70
 
71
71
  function updateUser() {
72
72
 
73
- user.age++
73
+ user.age++;
74
74
 
75
- // for (let i = 55; i <= 100; i++)
75
+ // for (let i = 55; i <= 100; i++);
76
76
 
77
77
  }
78
78
 
79
79
 
80
80
 
81
- uun = user.name.toUpperCase();
81
+ user.name = user.name.toUpperCase();
82
82
 
83
- console.log(uun)
83
+ //console.log(user.name);
84
84
 
85
85
 
86
86