@@ -4,23 +4,23 @@ $(document).ready(function(){
44 module ( "About Equality (topics/about_equality.js)" ) ;
55
66 test ( "numeric equality" , function ( ) {
7- equals ( 3 + 4 , 7 , 'hmmmm?' ) ;
7+ equals ( 3 + __ , 7 , 'hmmmm?' ) ;
88 } ) ;
99
1010 test ( "string equality" , function ( ) {
11- equals ( "3" + "7" , "37" , "concatenate the strings" ) ;
11+ equals ( "3" + __ , "37" , "concatenate the strings" ) ;
1212 } ) ;
1313
1414 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?' ) ;
1616 } ) ;
1717
1818 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?' ) ;
2020 } ) ;
2121
2222 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." ) ;
2424 } ) ;
2525
2626} ) ;
0 commit comments