@@ -4,23 +4,23 @@ $(document).ready(function(){
4
4
module ( "About Equality (topics/about_equality.js)" ) ;
5
5
6
6
test ( "numeric equality" , function ( ) {
7
- equals ( 3 + 4 , 7 , 'hmmmm?' ) ;
7
+ equals ( 3 + __ , 7 , 'hmmmm?' ) ;
8
8
} ) ;
9
9
10
10
test ( "string equality" , function ( ) {
11
- equals ( "3" + "7" , "37" , "concatenate the strings" ) ;
11
+ equals ( "3" + __ , "37" , "concatenate the strings" ) ;
12
12
} ) ;
13
13
14
14
test ( "equality without type coercion" , function ( ) {
15
- ok ( 3 === 3 , 'what is exactly equal to 3?' ) ;
15
+ ok ( 3 === __ , 'what is exactly equal to 3?' ) ;
16
16
} ) ;
17
17
18
18
test ( "equality with type coercion" , function ( ) {
19
- ok ( 3 == "3" , 'what string is equal to 3, with type coercion?' ) ;
19
+ ok ( 3 == __ , 'what string is equal to 3, with type coercion?' ) ;
20
20
} ) ;
21
21
22
22
test ( "string literals" , function ( ) {
23
- equals ( "frankenstein" , 'frankenstein' , "quote types are interchangable, but must match." ) ;
23
+ equals ( "frankenstein" , __ , "quote types are interchangable, but must match." ) ;
24
24
} ) ;
25
25
26
26
} ) ;
0 commit comments