MCQ
Which method is used to add elements at the beginning of an array?
JavaScript
A push()
B unshift()
C shift()
D concat()
Explanation

unshift() adds elements to the beginning of an array.