Discussion :: Javascript - CS
- Which of the following is the descendant operator?
Answer : Option B
Explanation :
The .. operator is the descendant operator; you can use it in place of the normal . member-access operator :
var names = pt..name;
Be The First To Comment