List of questions
Related questions
Question 140 - Certified JavaScript Developer I discussion
Refer to the following array:
Let arr = [ 1,2, 3, 4, 5];
Which three options result in x evaluating as [3, 4, 5] ?
Choose 3 answers.
A.
Let x= arr.filter (( a) => (a<2));
B.
Let x= arr.splice(2,3);
C.
Let x= arr.slice(2);
D.
Let x= arr.filter((a) => ( return a>2 ));
E.
Let x = arr.slice(2,3);
Your answer:
0 comments
Sorted by
Leave a comment first