0 votes
in JavaScript by
What are the three important manipulations done in a for loop on a loop variable in javascript?

a) the initialization, the Incrementation, and update

b) the initialization, the test, and the update

c) the initialization, the test, and Incrementation

d) All of the above

1 Answer

0 votes
by

Answer:-  B

Reason: In a for loop, the initialization, the test, and the update are the three crucial manipulations of a loop variable) Firstly the loop initialiases the variable then test the condition and then after executing the statement increments its value.

Related questions

0 votes
asked Mar 22, 2021 in JavaScript by Robindeniel
+1 vote
asked Mar 5, 2021 in D Programming by SakshiSharma
...