alert(typeof Function.prototype);      //function

   
alert(Object.prototype instanceof Object); //false

alert(Object.prototype instanceof Function); //true;


alert(Function.prototype instanceof Function); //false

alert(Function.prototype instanceof Object);    //true

posted on 2008-03-11 15:00  陈高  阅读(115)  评论(0编辑  收藏  举报