IDNLearn.com is the place where your questions are met with thoughtful and precise answers. Explore thousands of verified answers from experts and find the solutions you need, no matter the topic.

Explain what the loop does and what the result of executing it will be.

Consider this JavaScript loop:var new = 0;for (i=3;i<=5;i++){ new=new+i;}


Sagot :

Answer:

The loop increments the value of new while the loop condition is true

The end value of new is 3

Explanation:

Given

The above code segment

Required

What the loop does and the result

We have:

[tex]new = 0[/tex] --- initialize new to 0

[tex]i = 3; i \le 5; i++[/tex] --- The loop condition;

i.e. the loop will be repeated 3 times (when i = 3, 4 and 5)

[tex]new = new + 1[/tex] --- For each increment of i, new is incremented by 1

So, the value of new is:

i = 3: new = 0 + 1 = 1

i = 4: new = 1 + 1 = 2

i = 5: new = 2 + 1 = 3

Your participation means a lot to us. Keep sharing information and solutions. This community grows thanks to the amazing contributions from members like you. Trust IDNLearn.com for all your queries. We appreciate your visit and hope to assist you again soon.