kangduu / front-end-camps

Front-end learning, interviews, question banks, algorithm camps.
https://kangduu.github.io/front-end-camps
MIT License
2 stars 0 forks source link

收集整理精华资源链接【视频、博客等】 #32

Open kangduu opened 7 months ago

kangduu commented 7 months ago

请将你们觉得值得学习的视频、博客等内容记录在下边:

en-cheng-river commented 7 months ago

promise终极面试题:

Promise.resolve().then(() => {
    console.log(0);
    return Promise.resolve(4);
}).then((res) => {
    console.log(res)
})

Promise.resolve().then(() => {
    console.log(1);
}).then(() => {
    console.log(2);
}).then(() => {
    console.log(3);
}).then(() => {
    console.log(5);
}).then(() =>{
    console.log(6);
})

详细解答:

https://www.douyin.com/user/self?modal_id=7332358567342755107&showTab=like

sowelly commented 6 months ago

【前端小野森森】你不知道的『for循环』【深度JavaScript】

https://www.bilibili.com/video/BV12x4y1y7kh/?spm_id_from=333.999.0.0&vd_source=7a885242570772230601e857841dee14

前一小时为基础、一小时后上面试题

kangduu commented 6 months ago

不要再写满屏import导入啦!🔥

import是如何“占领满屏“的?https://juejin.cn/post/7344571285848768524

kangduu commented 4 months ago

ES5 和 ES6 中的继承