访问constructor
属性的语法为:
arr.constructor
在这里, arr是一个数组。
从构造函数返回值
- 返回数组的构造函数 。
对于JavaScript数组,构造函数属性返回函数 Array(){[native code]} 。
注意 :返回值是一个函数的引用,而不是函数的名称。
示例:使用构造函数属性
let array = [1, 2, 3, 4, 5];
let constructor = array.constructor;
console.log(constructor) // Array() { [native code] }
输出
Array() { [native code] }
推荐读物: JavaScript构造函数