TypeScript 字符串Constructor属性
2019-01-09 14:27 更新
TypeScript 字符串Constructor属性
Constructor属性返回对创建对象的String函数的引用。
示例
var str = new String( "This is string" );
console.log("str.constructor is:" + str.constructor)
在编译时,它将在JavaScript中生成相同的代码。
其输出如下:
str.constructor is:function String() { [native code] }
以上内容是否对您有帮助:
更多建议: