摘要:
JavaScriptconstructor属性JavaScript Array 对象参考手册定义和用法constructor属性返回对创建此对象的数组函数的引用。语法object.constructor实例例子 1在本例中,我们将展示如何使用constructor属性:输出:This is an ArrayTIY例子 2在本例中,我们将展示如何使用constructor属性:输出:function employee(name, jobtitle, born){this.name = name; this.jobtitle = job; this.born = born;} 阅读全文