siven's blogs

Keep Coding! Keep Growing! 🖖

0%

总的来说上半年的心情主要是疑惑,不安焦虑。观今鉴古,无古不成今,太阳底下没有新鲜事。事到如今,只有时刻学习,保持竞争力。希望早日能到柳暗花明处。🖖🖖

Read more »

就以上的OKR来看,个人的执行力还是欠缺,但总体上来说今年完成了阶段性目标,“无平不坡,无往不复“,希望明年正式步入职场后能有更多的收获与成长。

Read more »

也许结果早就在以往的无数的日夜决定,但是现在努力还不晚,加油小伙伴们🖖

Read more »

我们都知道JS是单线程的语言,那有的同学就有疑问:'单线程那岂不是效率很低?',下面我们就来看看和单线程密切相关的事件循环是如何解决效率问题。

Read more »

Vue 实现了一套内容分发的 API,这套 API 的设计灵感源自 Web Components 规范草案,将slot元素作为承载分发内容的出口。

Read more »

Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns are used with the exec() and test() methods of RegExp, and with the match(), matchAll(), replace(), replaceAll(), search(), and split() methods of String.

Read more »

这种经典的算法题,最开始可能纠结于代码的执行顺序,这种情况,可以在运行环境中打断点,一步一步执行,看看顺序。

Read more »

Once the render tree is built, layout becomes possible. Layout is dependent on the size of screen. The layout step determines where and how the elements are positioned on the page, determining the width and height of each element, and where they are in relation to each other.

Read more »