Skip to content

Commit b6b6a83

Browse files
authoredJul 6, 2016
Merge pull request #11 from ktravers/ktravers-1467592802
grammar
2 parents 980730e + 9d445ae commit b6b6a83

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ We can string together these comparisons using `&&` (pronounced "and") and `||`
9494

9595
With `&&`, _both_ statements (to the left and right of `&&`) must be `true` in order for the entire _expression_ (that is, the entire _phrase_) to be `true`; with `||`, only one of the statements needs to be `true`.
9696

97-
Keep in mind that JavaScript reads this combinations from left to right, returns the last statement it saw, and only evaluates as many statements as necessary. So if we write,
97+
Keep in mind that JavaScript reads these combinations from left to right, returns the last statement it saw, and only evaluates as many statements as necessary. So if we write,
9898

9999
``` javascript
100100
5 === 5 && 1
@@ -250,6 +250,4 @@ In the example above, we'll see `"You should eat a big chocolate cake"` printed
250250
* [Codecademy - Ternary Operator](http://www.codecademy.com/glossary/javascript/ternary-operator)
251251
* [Codecademy - Switch Statements](http://www.codecademy.com/glossary/javascript/switch-statements)
252252

253-
<p data-visibility='hidden'>View <a href='https://learn.co/lessons/intro-to-flow-control.js'>Intro To Flow Control in JS</a> on Learn.co and start learning to code for free.</p>
254-
255253
<p class='util--hide'>View <a href='https://learn.co/lessons/skills-based-javascript-intro-to-flow-control'>JavaScript Flow Control</a> on Learn.co and start learning to code for free.</p>

0 commit comments

Comments
 (0)
Please sign in to comment.