Discussion :: Javascript - CS
- If we have an object r and want to know if it is a Range object, we can write:
Answer : Option D
Explanation :
The r instanceof Range returns true if r inherits from Range.prototype. The instanceof operatory does not actually check whether r was initialized by the Range constructor.
Be The First To Comment