work
This commit is contained in:
parent
776e83e1f1
commit
480e69b843
87 changed files with 1020 additions and 233 deletions
15
1-js/4-data-structures/6-array/5-array-input-sum/task.md
Normal file
15
1-js/4-data-structures/6-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