InterviewSolution
Saved Bookmarks
| 1. |
If we have an object r and want to know if it is a Range object, we can write ______________(a) r typeof Range(b) r is Range(c) r equals Range(d) r instanceof RangeThis question was posed to me during an interview.I want to ask this question from Comparison of Core JavaScript versus Frameworks topic in division Caching, Debugging and Animation of JavaScript |
|
Answer» The correct answer is (d) r instanceof Range |
|