Skip to content

Commit 912fe51

Browse files
jae2jedops
authored andcommitted
Use strict equality in code snippet.
The text describes strict equality whereas the code describes ==
1 parent 07d1092 commit 912fe51

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)