Skip to content

Commit 7903847

Browse files
author
Stephania
committed
Done with equality
1 parent bf09d30 commit 7903847

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

topics/about_equality.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ test("equality without type coercion", function() {
1414
});
1515

1616
test("equality with type coercion", function() {
17-
ok(3 == "__", 'what string is equal to 3, with type coercion?');
17+
ok(3 == "3", 'what string is equal to 3, with type coercion?');
1818
});
1919

2020
test("string literals", function() {
21-
equal(__, "frankenstein", "quote types are interchangable, but must match.");
22-
equal(__, 'frankenstein', "quote types can use both single and double quotes.");
21+
equal("frankenstein", "frankenstein", "quote types are interchangable, but must match.");
22+
equal("frankenstein", 'frankenstein', "quote types can use both single and double quotes.");
2323
});

0 commit comments

Comments
 (0)