From 70d0cc009239709d1806e024b84d4a9af3792f2a Mon Sep 17 00:00:00 2001 From: husky <2388560359@qq.com> Date: Sun, 17 Oct 2021 11:23:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E8=AE=BE=E8=AE=A1?= =?UTF-8?q?=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 2f90218..73aa781 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ - [节流与防抖](#节流与防抖) - [柯里化](#柯里化) - [垃圾回收](#垃圾回收) + - [设计模式](#设计模式) - [其他零散但重要的知识点](#其他零散但重要的知识点) - [HTML](#html) - [语义化](#语义化) @@ -421,6 +422,15 @@ JavaScrip 在变量被创建时分配内存,并在对象不再使用时自动 - [ ] [GC in v8](https://github.com/lrlna/sketchin/blob/master/guides/garbage-collection-in-v8.md) - [ ] [JavaScript 工作原理:内存管理 + 处理常见的 4 种内存泄漏](https://blog.sessionstack.com/how-javascript-works-memory-management-how-to-handle-4-common-memory-leaks-3f28b94cfbec),另有[中文版](https://juejin.cn/post/6844903519078580238) +#### 设计模式 + +- [ ] 文档 + - [ ] [wikipedia](https://en.wikipedia.org/wiki/Software_design_pattern) + - [ ] [中文版维基百科](https://zh.wikipedia.org/wiki/%E8%AE%BE%E8%AE%A1%E6%A8%A1%E5%BC%8F_(%E8%AE%A1%E7%AE%97%E6%9C%BA)) +- [ ] 推荐书籍 + - [ ] 《Head First Design Pattern》 也有中文版的 + - [ ] 《Design Patterns: Elements of Reusable Object-Oriented Software》 设计模式:可复用面向对象软件的基础 + #### 其他零散但重要的知识点 - [ ] [0.1 + 0.2 !== 0.3](https://zhuanlan.zhihu.com/p/225490777),JS 浮点数会造成的问题