BlogHide Resteemsandy2046 (25)in react • 6 years ago[React] Redux 源码解读介绍 我们一起来研究下当前最流行的 React状态管理容器Redux ,本文基于 Redux v3.7.2 ,Redux用一个单独的状态树对象(state tree object)保存整个应用的状态,这个对象不能直接被改变(immutable),当数据变化了,一个新的对象就会被创建(通过actions和reducers) Redux有如下优点: 可预测…resteemedshadowlu (28)in food • 6 years agoToday I share with you a very famous delicious (Ningbo, China), the shuttle crab fried rice cakeHello everyone, I am Lu, here is the Chinese fashion food section. China is a country rich in food. I will share videos and pictures of various Chinese cuisines for your reference and production. I…andy2046 (25)in nodejs • 6 years agoNode.js进阶666 等级考试Node.js challenge 四级 What is the relationship between Node.js and V8? Can Node work without V8? How come when you declare a global variable in any Node.js file it’s not really global to…andy2046 (25)in kubernetes • 6 years agoKubernetes API referencev1.10 Container Pod Service Deployment Ingress Job CronJob NetworkPolicyandy2046 (25)in kubernetes • 6 years agoKubernetes cheat sheetCluster Introspection kubectl get services # List all services andy2046 (25)in tco • 6 years agoTail Call Optimization in JavaScript[JavaScript] 尾调用优化 Tail Call Optimization 介绍 现在函数式编程越来越流行,有时我们会选择用recursion递归来写逻辑,这样代码容易懂而且也可以避免一些side-effects副作用,但是, 但是,JavaScript并不支持尾递归调用 举个栗子🌰,下面👇代码会出错 var sum = function(x, y) {andy2046 (25)in variable • 6 years agoVariable Object in JavaScript[JavaScript] 变量对象 Variable Object 介绍 本文中,我们将分析与ECMAScript 执行上下文 相关的概念 变量对象 Variable Object 先举个栗子🌰,为什么a b x表现大不相同,当引用一个函数或者变量时,解释器是如何以及从哪里找到它们的呢 alert(a); // undefinedandy2046 (25)in execution • 6 years agoExecution Context in JavaScript[JavaScript] 执行上下文 Execution Context 介绍 本文中,我们将分析ECMAScript的执行上下文以及相关的可执行代码的类型 先举个栗子🌰,为什么a和b表现大不相同,当引用一个函数或者变量时,解释器是如何以及从哪里找到它们的呢 b(); // Called bandy2046 (25)in scope • 6 years agoScope Chain in JavaScript[JavaScript] 作用域链 Scope Chain 介绍 在 变量对象 中已经介绍过, 执行上下文 (变量,函数声明和函数形式参数)的数据被存储为变量对象的属性 此外,我们知道每次进入上下文时都会创建变量对象并填充初始值,并且它的更新发生在代码执行阶段 举个栗子🌰 function test(a, b) {andy2046 (25)in javascript • 6 years agothis in JavaScript[JavaScript] 令人迷惑的《this》 介绍 本文将讨论一个与 执行上下文 密切相关的细节 => this 关键字 实践证明,理解 this 难度较大,并且经常会导致在不同的执行环境中错误滴确定 this 值的问题 举着栗子🌰: var a = 'global';