回答編集履歴
2
add pattern
test
CHANGED
@@ -32,9 +32,13 @@
|
|
32
32
|
|
33
33
|
|
34
34
|
|
35
|
-
addition(1, 1); // 1 + 1
|
35
|
+
addition(1, 1); // 1 + 1
|
36
36
|
|
37
37
|
addition('1', '1'); // '1' + '1'
|
38
|
+
|
39
|
+
addition('1', 1); // '1' + 1
|
40
|
+
|
41
|
+
addition(1, '1'); // 1 + '1'
|
38
42
|
|
39
43
|
```
|
40
44
|
|
1
CodePenに変更
test
CHANGED
@@ -38,4 +38,4 @@
|
|
38
38
|
|
39
39
|
```
|
40
40
|
|
41
|
-
([こちら](https://
|
41
|
+
([こちら](https://codepen.io/tksfkd/pen/LYPgpVR)で試せます)
|