MCQ
Which method is used to join all elements of an array into a string?
JavaScript
A concat()
B join()
C toString()
D Both b and c
Explanation

join() and toString() both convert arrays to strings, but join() allows custom separators.