构造器:使用什么元素实例化的对象,元素就称为该对象的构造器
对象.constructor; //获得构造器
<script type="text/javascript">
function Animal() {
//设置默认成员
this.name = "dd";
this.age = 6;
this.run = function () {
console.log('runing...');
}
}
var cat = new Animal();
console.log(cat.constructor);
var f1 = new Function("name", "age", "console.log(name + '--' + age)");
f1('tom', 12);
</script>
效果图: