Код: Выделить всё
// Array of phone models sold by the company
/* Changed parenthesis to braces to define an array - Debugged */
let phones = ["Photon 6E", "Photon 6X", "Photon 7E", "Photon 7X", "Photon 8P"];
// Units sold in the previous quarter
/* Changed parenthesis to braces to define an array - Debugged */
let sales = [10281, 12255, 25718, 21403, 16142];
// Variable to calculate total sales
let totalSales = 0;
// Use the forEach() method to sum the sales for each phone model and add it to the totalSales variable
/* addtoTotal needed to be capitalized to addToTotal - Debugged */
sales.forEach(addToTotal);
// For loop to generate bar chart of phone sales
/* Changed the i value from 1 to 0 - AA */
for (let i = 0; i
Я попытался проанализировать файлы HTML и CSS, чтобы увидеть, есть ли какая -либо подсказка о том, где я мог бы испортить. Я понимаю, что мне нужно вставить код между разделом Поэтому я попытался переписать код, как показано ниже, чтобы увидеть, сделает ли он что -то другое. < /p>
let tablecell = document.getelementsbytagname ("tbody");
tablecell.insertadjacenthtml ("преждевременный", barchart)
< /code>
Подробнее здесь: https://stackoverflow.com/questions/794 ... a-function
Мобильная версия