I am new to programming. Im working on Loops for JS, The Do-While loop has me so confused

前端 未结 0 1240
我寻月下人不归
我寻月下人不归 2021-01-19 07:29

My code:

function doWhileLoop(num) {
 num = num + 1;
 return num
}

do {
  console.log("I run once regardless.")
}  while (incrementVariable() <          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题