French, asked by chestdharickp, 8 months ago

chama basecam
me a function. What is fundoppe
What areal and final para a te
మందులు ? 1
many walues can be tumed to function
sidentify the comment fonction siteetsedam
float average (a, b) { }
float mult (int *, ) }
float doer (int, float = 3.14)​

Answers

Answered by Anonymous
2

Explanation:

The while loop has the following syntax:

while (condition) {

// code

// so-called "loop body"

}

While the condition is truthy, the code from the loop body is executed.

For instance, the loop below outputs i while i < 3:

let i = 0;

while (i < 3) { // shows 0, then 1, then 2

alert( i );

i++;

}

A single execution of the loop body is called an iteration. The loop in the example above makes three iterations.

If i++ was missing from the example above, the loop would repeat (in theory) forever. In practice, the browser provides ways to stop such loops, and in server-side JavaScript, we can kill the process.

Any expression or variable can be a loop condition, not just comparisons: the condition is evaluated and converted to a boolean by while.

For instance, a shorter way to write while (i != 0) is while (i):

Answered by sjjvfy
1

Explanation:

fjn-drrr-pve

come here and show plss

Similar questions