2020-07-27 随记

for 循环还有这种写法

```js

  for (let i = drag; i != end; i += dir) {

    list[i] = list[i + dir];

  }

```

你可能感兴趣的:(2020-07-27 随记)