Skip to content

Commit

Permalink
feat 129
Browse files Browse the repository at this point in the history
  • Loading branch information
yygmind committed Aug 22, 2019
1 parent f9bf7d9 commit 3348fe4
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,43 @@


## 今日面试题
2019-08-22

> 129 题:输出以下代码执行结果
>
> ```js
> function wait() {
> return new Promise(resolve =>
> setTimeout(resolve, 10 * 1000)
> )
> }
>
> async function main() {
> console.time();
> const x = wait();
> const y = wait();
> const z = wait();
> await x;
> await y;
> await z;
> console.timeEnd();
> }
> main();
> ```



解析:[ 129 ](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/251)

<br/>




## 本周汇总
2019-08-20

> 128 题:Http 状态码 301 302 的应用场景分别是什么
>



Expand All @@ -25,8 +58,6 @@




## 本周汇总
2019-08-19

> 127 题:如何用 css js 实现多行文本溢出省略效果,考虑兼容性
Expand Down

0 comments on commit 3348fe4

Please sign in to comment.