AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# While Loop While Loops repetitively execute a block of code as long as a specified condition is true. ~~~ while(condition){ // do it as long as condition is true } ~~~ For example, the loop in this example will repetitively execute its block of code as long as the variable i is less than 5: ~~~ var i = 0, x = ""; while (i < 5) { x = x + "The number is " + i; i++; } ~~~ The Do/While Loop is a variant of the while loop. This loop will execute the code block once before checking if the condition is true. It then repeats the loop as long as the condition is true: ~~~ do { // code block to be executed } while (condition); ~~~ **Note**: Be careful to avoid infinite looping if the condition is always true! Exercise Using a while-loop, create a variable named `message` that equals the concatenation of integers (0, 1, 2, ...) as long as its length (`message.length`) is less than 100. ~~~ var message = ""; ~~~