translating
This commit is contained in:
parent
2b874a73be
commit
928cd2731b
165 changed files with 2046 additions and 2967 deletions
27
1-js/4-data-structures/7-array/5-array-input-sum/solution.md
Normal file
27
1-js/4-data-structures/7-array/5-array-input-sum/solution.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
Please note the subtle, but important detail of the solution. We don't convert `value` to number instantly after `prompt`, because after `value = +value` we would not be able to tell an empty string (stop sign) from the zero (valid number). We do it later instead.
|
||||
|
||||
|
||||
```js run demo
|
||||
function sumInput() {
|
||||
|
||||
let numbers = [];
|
||||
|
||||
while (true) {
|
||||
|
||||
let value = prompt("A number please?", 0);
|
||||
|
||||
// should we cancel?
|
||||
if (value === "" || value === null || !isFinite(value)) break;
|
||||
|
||||
numbers.push(+value);
|
||||
}
|
||||
|
||||
let sum = 0;
|
||||
for (let number of numbers) {
|
||||
sum += number;
|
||||
}
|
||||
}
|
||||
|
||||
alert( sumInput() );
|
||||
```
|
||||
|
15
1-js/4-data-structures/7-array/5-array-input-sum/task.md
Normal file
15
1-js/4-data-structures/7-array/5-array-input-sum/task.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
importance: 4
|
||||
|
||||
---
|
||||
|
||||
# Sum input numbers
|
||||
|
||||
Write the function `sumInput()` that:
|
||||
|
||||
- Asks the user for values using `prompt` and stores the values in the array.
|
||||
- Finishes asking when the user enters a non-numeric value, an empty string, or presses "Cancel".
|
||||
- Calculates and returns the sum of array items.
|
||||
|
||||
P.S. A zero `0` is a valid number, please don't stop the input on zero.
|
||||
|
||||
[demo]
|
Loading…
Add table
Add a link
Reference in a new issue