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: 2024/10/31 16:31,
52.15.253.149:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 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://ecomorder.com/Techref/language/java/SCRIPT/definitive/refp_276.htm"> [Chapter 21] Reference: Object.constructor</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Ashley Roll has put together a really nice little unit here. Leave off the MAX232 and keep these handy for the few times you need true RS232! |
.