all-of-frontend/README.md

119 lines
3.2 KiB
Markdown
Raw Normal View History

2021-03-08 08:02:48 +08:00
# 干爆前端
仓库内容分为以下几块:
- 每日更新一道大厂原题,第二天公布答案
- 前端学习路径及包括的各个知识点,每个知识点都有具体文章帮助大家融会贯通
- 前端 15 万字面试资料
- 前端进阶好文
2021-03-08 10:48:37 +08:00
- 各类大厂内推
2021-03-08 08:02:48 +08:00
2021-03-08 10:49:29 +08:00
## 目录
- [每日大厂原题](#每日大厂原题)
2021-03-08 10:50:35 +08:00
- [前端十五万字面试资料](#前端十五万字面试资料)
2021-03-08 10:49:29 +08:00
- [各类大厂内推](#各类大厂内推)
2021-03-08 08:02:48 +08:00
## 每日大厂原题
欢迎大家提供面试题发送题目至邮箱zx597813039@gmail.com。
成功采纳后,如果你面试遇到其他问题,笔者可以提供免费解答服务。
2021-03-08 10:49:29 +08:00
### 今日原题
2021-03-08 08:02:48 +08:00
2021-03-12 07:24:44 +08:00
第五题:[Promise.all 错误处理](https://github.com/KieSun/fucking-frontend/issues/6)
异步请求通过 Promise.all 处理,怎么让其中失败的所有请求重试。
```js
Promise.all([A, B, C, D])
// 4 个请求完成后发现 AD 请求失败了,如果让 AD 请求重试
```
2021-03-12 07:25:11 +08:00
第四题:[消息队列](https://github.com/KieSun/fucking-frontend/issues/5)
2021-03-11 07:49:49 +08:00
2021-03-12 07:24:44 +08:00
<details>
2021-03-11 07:49:49 +08:00
页面上有三个按钮,分别为 A、B、C点击各个按钮都会发送异步请求且互不影响每次请求回来的数据都为按钮的名字。
请实现当用户依次点击 A、B、C、A、C、B 的时候,最终获取的数据为 ABCACB。
2021-03-12 07:24:44 +08:00
</details>
2021-03-10 07:46:30 +08:00
第三题:[请按照用例实现代码](https://github.com/KieSun/fucking-frontend/issues/3)
2021-03-11 07:49:49 +08:00
<details>
2021-03-10 07:46:30 +08:00
```js
// 请使用原生代码实现一个Events模块可以实现自定义事件的订阅、触发、移除功能
const fn1 = (... args)=>console.log('I want sleep1', ... args)
const fn2 = (... args)=>console.log('I want sleep2', ... args)
const event = new Events();
event.on('sleep', fn1, 1, 2, 3);
event.on('sleep', fn2, 1, 2, 3);
event.fire('sleep', 4, 5, 6);
// I want sleep1 1 2 3 4 5 6
// I want sleep2 1 2 3 4 5 6
event.off('sleep', fn1);
event.once('sleep', () => console.log('I want sleep'));
2021-03-11 07:41:19 +08:00
event.fire('sleep');
// I want sleep2 1 2 3
2021-03-10 07:46:30 +08:00
// I want sleep
event.fire('sleep');
// I want sleep2 1 2 3
```
2021-03-11 07:49:49 +08:00
[答案](./Answer/1%20~%2010/3.md)
2021-03-11 07:41:19 +08:00
2021-03-11 07:49:49 +08:00
</details>
2021-03-11 07:41:19 +08:00
2021-03-09 07:24:08 +08:00
第二题:[以下代码输出什么,为什么?](https://github.com/KieSun/fucking-frontend/issues/2),这道题目是第一题的进阶版本,更有趣了。
2021-03-10 07:46:30 +08:00
<details>
2021-03-09 07:24:08 +08:00
```js
try {
let a = 0
;(async function() {
a += 1
console.log('inner', a)
throw new Error('123')
// a()
})()
console.log('outer', a)
} catch(e) {
console.warn('Error', e)
}
```
2021-03-10 07:46:30 +08:00
[答案](./Answer/1%20~%2010/2.md)
</details>
2021-03-09 07:24:08 +08:00
2021-03-09 07:27:57 +08:00
第一题:[以下代码输出什么,为什么?](https://github.com/KieSun/fucking-frontend/issues/1)
2021-03-08 08:02:48 +08:00
2021-03-10 07:46:30 +08:00
<details>
2021-03-08 08:02:48 +08:00
```js
try {
(async function() { a().b().c() })()
} catch (e) {
console.log(`执行出错:${e.message}`)
}
```
2021-03-09 07:40:47 +08:00
[答案](./Answer/1%20~%2010/1.md)
2021-03-10 07:46:30 +08:00
</details>
2021-03-08 10:50:35 +08:00
## 前端十五万字面试资料
2021-03-08 08:02:48 +08:00
2021-03-08 10:48:37 +08:00
[在线阅读](https://yuchengkai.cn/home/)
## 各类大厂内推
数十家公司及岗位,数百个岗位 HC具体内容查看 [表格](https://bitable.feishu.cn/appdL3vQNYWhT2hGnNRjlC9XoWD)。
2021-03-08 08:02:48 +08:00
2021-03-08 10:48:37 +08:00
另外欢迎有招人需求的朋友提供招聘信息触达数万前端内推奖拿到手软。发送招聘信息至邮箱zx597813039@gmail.com。