constructor 属性返回对 String 对象属性创建的函数。
string.constructor
所有主要浏览器都支持 constructor 属性
返回 String 对象属性创建的函数:
<script> var txt = "Hello World!"; document.write(txt.constructor); </script>
以上实例输出:
function String() { [native code] }