Source code

Revision control

Copy as Markdown

Other Tools

function testPrimitiveConstructorPrototype() {
var f = function(){};
f.prototype = false;
for (let j=0;j<5;++j) { new f; }
return "ok";
}
assertEq(testPrimitiveConstructorPrototype(), "ok");