You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
>**Note:** The order of context affects the meaning of a variable. For example,`shouldUpdateComponent` means_you_ are about to update a component, while`shouldComponentUpdate` tells you that_component_ will update on itself, and you are but controllingwhether it shoulddo that right now.
126
+
>**Note:** The order of context affects the meaning of a variable. For example,`shouldUpdateComponent` means_you_ are about to update a component, while`shouldComponentUpdate` tells you that_component_ will update on itself, and you are but controllingwhen it shouldbe updated.
127
127
>In other words,**high context emphasizes the meaning of a variable**.
128
128
129
129
---
@@ -179,7 +179,7 @@ console.log(fruits) // 5
179
179
180
180
###`fetch`
181
181
182
-
Requests fora data, which takes time (i.e. async request).
182
+
Request forsome data, which takes some indeterminate time (i.e. async request).
183
183
184
184
```js
185
185
functionfetchPosts(postCount) {
@@ -309,11 +309,11 @@ function shouldUpdateUrl(url, expectedUrl) {
309
309
310
310
###`min`/`max`
311
311
312
-
Represent minimum or maximum value. Used when describing boundaries or limits.
312
+
Represents a minimum or maximum value. Used when describing boundaries or limits.