打字稿 |字符串构造函数属性
TypeScript中的Constructor Property()用于返回对创建对象的 String函数的引用。
句法:
string.constructor
返回值:此方法返回对创建对象的 String函数的引用。
下面的例子说明了 TypeScript 中的字符串构造函数属性
示例 1:
JavaScript
JavaScript
输出:
Return Value of constructor property: function String() { [native code] }
示例 2:
JavaScript
输出:
function String() { [native code] }