-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
精读《现代 JavaScript 概览》 #35
Comments
这两篇文章介绍的很全面了,我对现代编程补充几条: Dependent injection(依赖注入)通过控制反转,父级不需要关心子实现细节,将子类可能用到的实例都初始化好,由子类决定引入哪些依赖。还有一个好处是维持了单实例,这一点在数据流中尤为重要,如果 store 不是单例的,那数据流必然乱了套,既希望传给子类使用,又要维持单例,依赖注入是很好的解决方案。 Symbol Reflect Proxy这三篇文章非常详细介绍了这三位 API:symbol reflect proxy Server rendering前端对后端渲染的热度降了很多,主要是盲目跟风的氛围消停了,真正需要的团队已经稳定的用起来了。后端渲染的理念很新颖,一定程度帮助了 html 认识到自己的不足,就像 ag react vue 对 |
文章讲了很多现代 JavaScript 编程中的很多新概念, 我这里记录一下所有的目录: 纯函数和副作用 作用域和闭包 |
"声明式代码去管理副作用和执行命令式编程" 这里是不是写反了,原文应该说的是 “命令式代码去管理副作用和执行声明式编程” |
精读文章地址:
https://auth0.com/blog/glossary-of-modern-javascript-concepts/
https://auth0.com/blog/glossary-of-modern-javascript-concepts-part-2/
讨论 Statefulness 与 Statelessness、Immutability 与 Mutability、Imperative 与 Declarative Programming、Higher-order Functions、Observables、以及 FP、RP、FPR 编程范式。如何应用到现在的开发里.
The text was updated successfully, but these errors were encountered: