Skip to content

Commit 3a56149

Browse files
committed
Merge pull request #124 from jae2/gh-pages
Typo - use strict equality in code snippet.
2 parents 07d1092 + 912fe51 commit 3a56149

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/lesson1/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Conditions work with a number of evaluated statements. Some of the comparisons w
217217
var apples = "apples";
218218
var oranges = "oranges";
219219

220-
if (apples == oranges) {
220+
if (apples === oranges) {
221221
console.log("Apples and Oranges are the same thing!");
222222
}
223223
```

0 commit comments

Comments
 (0)