3N26

Results 6 comments of 3N26

我目前这样处理了 ```css .taro-tabbar__tabbar-bottom { display: none; } ```

function push (arr, item) { arr[arr.length] = item; }

function print(n){ setTimeout(() => { setTimeout(() => { console.log(n); }, n*1000) }, Math.floor(Math.random() * 1000)); } for(var i = 0; i < 100; i++){ print(i); }

```javascript function solution(s, limit) { const n = s.length; let res = ''; for (let i = 0, cnt = 0; i < n; i += cnt) { cnt =...

```javascript function rand5 () { return Math.random() * 6 | 0 } function rand7 () { return (rand5() & 1) * 4 + (rand5() & 1) * 2 + (rand5()...