Learn Form Validation by Building a Calorie Counter - Step 56

Tell us what’s happening: I’m pretty sure I have the for loop correct but it is still telling me I need to initialize i to 0

function getCaloriesFromInputs(list) {

let calories = 0;
for (i = 0; i < list.length; i++) {

};
}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

function getCaloriesFromInputs(list) {
  let calories = 0;
  for (i = 0; i < list.length; i++) {

  };
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0

Challenge Information:

Learn Form Validation by Building a Calorie Counter - Step 56

You need to declare i by using the let keyword. I think that should work

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.