Closed 316k closed 7 years ago
function Test() { this.length = 10; } var a = new Test(); print("" + a); print(a === undefined);
Should return :
[object Object] false
But codeBoot gives :
undefined true
This is not a problem for builtins :
> var a = new Date(); > a.toString() "Thu Oct 19 2017 14:51:33 GMT-0400 (EDT)"
Fixed by commit 83bc663 .
Should return :
But codeBoot gives :
This is not a problem for builtins :