You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
547 B

/*
* Very basic relational tests
*/
/* FIXME: add associativity tests */
/*===
true false false
true true false
false false true
false true true
===*/
print(1 < 2, 2 < 2, 3 < 2);
print(1 <= 2, 2 <= 2, 3 <= 2);
print(1 > 2, 2 > 2, 3 > 2);
print(1 >= 2, 2 >= 2, 3 >= 2);
/*===
true
true
false
===*/
var obj = {foo:1, bar:2};
print('foo' in obj);
print('bar' in obj);
print('quux' in obj);
/*===
true
false
false
===*/
var num = new Number(123);
print(num instanceof Number);
print(123 instanceof Number);
print('foo' instanceof Number);