Q40
How do you remove an element from an array in JavaScript?
A.
array.remove(index);
B.
array.delete(index);
C.
array.splice(index, 1);
AnswerD.
array.pop(index);
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board