Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: vposada on Jun 23, 2022



Title: Consider the following JavaScript code:
Post by: vposada on Jun 23, 2022
Consider the following JavaScript code:
var x = 10;
var count = 1;
while count < 11)     {
       console.log(count * x +  );
     count += 1;
}
What type of code is being used?
A) An endless loop
B) A for while loop
C) A for loop
D) A while loop


Title: Consider the following JavaScript code:
Post by: Yeeeee89 on Jun 23, 2022
Content hidden