回答編集履歴

1

コードを一部修正

2020/08/23 10:54

投稿

ex025
ex025

スコア179

test CHANGED
@@ -12,9 +12,9 @@
12
12
 
13
13
  //テキストを分割
14
14
 
15
- text1 = "textin1".slice(0,5);
15
+ text1 = text.slice(0,5);
16
16
 
17
- text2 = "textin2".slice(5,10);
17
+ text2 = text.slice(5,10);
18
18
 
19
19
 
20
20