let index = 0;while (++index < 1000) { // do something }这段代码 等价于
let index = 0; while(index < 1000){ // do something index++; }