Source code

Revision control

Copy as Markdown

Other Tools

function f(x) {
if (x.y()) {};
}
f({y: function() {}});
try {
f(10);
assertEq(0, 1);
} catch(e) {
assertEq(e instanceof TypeError, true);
}