回答編集履歴
5
テキスト追加
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
```javascript
|
8
8
|
|
9
|
-
const
|
9
|
+
const sum = $(".en").get().reduce((s, e) => +e.value + s, 0);
|
10
10
|
|
11
11
|
```
|
12
12
|
|
4
テキスト追加
test
CHANGED
@@ -6,17 +6,7 @@
|
|
6
6
|
|
7
7
|
```javascript
|
8
8
|
|
9
|
-
$("#begin").on("click", function(){
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
9
|
+
const total = $(".en").get().reduce((s, e) => +e.value + s, 0);
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
console.log(total);
|
18
|
-
|
19
|
-
});
|
20
10
|
|
21
11
|
```
|
22
12
|
|
3
テキスト追加
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
const total = $(".en").get().reduce((s
|
13
|
+
const total = $(".en").get().reduce((s, e) => +e.value + s, 0);
|
14
14
|
|
15
15
|
|
16
16
|
|
2
テキスト追加
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
一案としまして、
|
5
|
+
一案としまして、以下のようにすると合計を得ることができます。
|
6
6
|
|
7
7
|
```javascript
|
8
8
|
|
1
テキスト追加
test
CHANGED
@@ -10,13 +10,7 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
const total = $(".en")
|
13
|
+
const total = $(".en").get().reduce((sum, elm) => +elm.value + sum, 0);
|
14
|
-
|
15
|
-
.get()
|
16
|
-
|
17
|
-
.map(elm => +elm.value)
|
18
|
-
|
19
|
-
.reduce((sum, amount) => sum + amount);
|
20
14
|
|
21
15
|
|
22
16
|
|
@@ -26,4 +20,4 @@
|
|
26
20
|
|
27
21
|
```
|
28
22
|
|
29
|
-
- **動作確認用サンプル: **[https://codepen.io/jun68ykt/pen/w
|
23
|
+
- **動作確認用サンプル: **[https://codepen.io/jun68ykt/pen/vYNmBGw?editors=1011](https://codepen.io/jun68ykt/pen/vYNmBGw?editors=1011)
|