โ Back to Loops
Question 30
forEach: Calculate Total Price
forEach: Calculate Total Price
Use forEach to calculate the total of all prices in the array, then print it. Array: [10, 20, 15] Expected output: Total price: 45 Steps: 1. Create a variable total starting at 0 2. Use forEach to add each price to total 3. Print the final total
Expected Output:
Total price: 45
Topics:
LoopsArraysforEach
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.