Which method joins all array elements into a string?
JavaScript AssociateEasy
JavaScript Associate — Easy
Which method joins all array elements into a string?
Explanation
The correct method to join all array elements into a string is the "join()" method in JavaScript. This method takes all elements of the array and concatenates them into a single string.