Learning web development: Marking guides and questions

2 posts were split to a new topic: Making a website for an interactive book

4 posts were merged into an existing topic: “Structuring a page of content” exercise

3 posts were split to a new topic: How can I help with Learning Area tutorials?

3 posts were split to a new topic: CSS padding

2 posts were merged into an existing topic: Assessment for “Marking up a letter”

A post was split to a new topic: “Adding features to our bouncing balls demo” assessment

3 posts were split to a new topic: CSS floats

2 posts were merged into an existing topic: “Adding features to our bouncing balls demo” assessment

173 posts were merged into an existing topic: “Mozilla splash page” assignment

5 posts were merged into an existing topic: Assessment for “Marking up a letter”

A post was merged into an existing topic: Assessment for “Marking up a letter”

3 posts were merged into an existing topic: Assessment for “Marking up a letter”

2 posts were merged into an existing topic: Assessment for “Marking up a letter”

2 posts were merged into an existing topic: Assessment for “Marking up a letter”

2 posts were merged into an existing topic: Assessment for “Marking up a letter”

A post was merged into an existing topic: “Marking up a letter” assignment

2 posts were merged into an existing topic: “Structuring a page of content” assignment

2 posts were merged into an existing topic: “Structuring a page of content” assignment

A post was merged into an existing topic: “Marking up a letter” assignment

Hi @chrisdavidmills!!! How are you? Sorry for my disappearance! hehe, we’re working a lot over here! And now… I came back with my questions! hehe

I’m on the first septs of Java Script and cannot understand why after the second line you use “[i]”. I hope don’t bother you with sth maybe silly! Have a nice day!

Active learning: Printing those products!

for(var i = 0; i < products.length; i++) {
 var subArray = products[i].split(':');
 var name = subArray[0];
 var price = Number(subArray[1]);
 total += price;
 itemText = name + ' — $' + price;