Match the followingobjectproperties/methodsto their respective descriptions.
A. References the constructor function that createsobject
B. Returnstrueifobjecthas the specified property,prop
C. Returnstrueifobjectexists in objectobjprototype chain
D. Returnstrueif thepropproperty is enumerable
E. Returns the value ofobjectas a text string, number, Boolean value, undefined, or null
A. object.constructor
B. object.hasOwnProperty(prop)
C. object.isPrototypeOf(obj)
D. object.propertyIsEnumerable(prop)
E. object.valueOf()
You might also like to view...
Which of the following files could likely be an Excel worksheet used as a data source in Word?
A) Oaxaca Mexico clients.xlsx B) Guanajuato clients.mdb C) Mexico City clients.xml D) Oaxaca clients. docx
What is one purpose of the debugger?
A. It fixes your code. B. It allows you to track variable values. C. It fixes syntax errors. D. None of these.