Navigator 3.0
object.constructor
The constructor property of any object is a read-only reference to the function that was used as the constructor for that object. For example, if you create an array a with the Array() constructor, then a.constructor will be Array:
a =index.html new Array(1,2,3); // create an object a.constructor ==index.html Array // evaluates to true
One common use of the constructor property is to determine the type of unknown objects. Given an unknown value, you can use the typeof operator to determine whether it is a primitive value or an object. If it is an object, you can use the constructor property to determine what type of object it is. For example, the following function determines whether a given value is a Document object:
function isDocument(x) { return ((typeof x ==index.html "object") && (x.constructor == "Document")); }
file: /Techref/language/JAVA/SCRIPT/definitive/refp_276.htm, 5KB, , updated: 2019/10/14 16:00, local time: 2025/5/7 00:16,
18.117.114.211:LOG IN
|
©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/language/JAVA/SCRIPT/definitive/refp_276.htm"> [Chapter 21] Reference: Object.constructor</A> |
Did you find what you needed? |
![]() o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to www.piclist.com! |
.