Skip to content

Commit 0f3fefd

Browse files
committed
typo...'they' to 'the'
1 parent ebf7a9f commit 0f3fefd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ number *= 10 // 50
7878
number /= 5 // 1
7979
```
8080

81-
The thing to remember about these methods is that they modify the variable in place. So if we have two functions that depend on the same external variable, they order in which they're called matters. Follow along in console:
81+
The thing to remember about these methods is that they modify the variable in place. So if we have two functions that depend on the same external variable, the order in which they're called matters. Follow along in console:
8282

8383
``` javascript
8484
var number = 10
@@ -165,3 +165,5 @@ You're now ready to solve the final two tests in this lab, `makeInt(n)` and `pre
165165
- `parseInt()`: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseInt
166166

167167
- `parseFloat()`: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/parseFloat
168+
169+
<p class='util--hide'>View <a href='https://learn.co/lessons/javascript-arithmetic-lab'>JavaScript Arithmetic Lab</a> on Learn.co and start learning to code for free.</p>

0 commit comments

Comments
 (0)