回答編集履歴

1

コメントが一部のみしか書かれていなかった問題を修正

2017/05/08 15:10

投稿

acid_chicken
acid_chicken

スコア12

test CHANGED
@@ -10,9 +10,9 @@
10
10
 
11
11
  const title = document.title; // 元のtitleを取得
12
12
 
13
- document.title += "!"; //
13
+ document.title += "!"; // titleの末尾に文字を付加しtitleの値を変える
14
14
 
15
- document.title = title;
15
+ document.title = title; // titleの値を元に戻す
16
16
 
17
17
  }
18
18