如果说解释执行时是按顺序执行的,那为什么这么写就行呢?
function prop()
{
var t=new Two();
document.writeln(t.num);
}
function Two()
{}
Two.prototype=new One();
function One()
{}
One.prototype.num=123;