(function iterator(i){

  //循环终止

  if( i == *.length ){

    console.log("循环终止!");

    return;

  }

  //循环区域

  console.log(i);

  iterator( i+1 );

})(0)

相关文章:

  • 2022-12-23
  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
  • 2022-02-03
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-14
  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-18
相关资源
相似解决方案