29.
How can you convert an array to a string in JavaScript?
By using the toString() method
By using the slice() method
By using the concat() method
By using the join() method
Correct: A, D
To convert an array to a string in JavaScript, you can use the toString() method or the join() method. The toString() method converts each element of the array to a string, concatenates them with commas, and returns the resulting string. The join() method allows you to specify a separator and returns a string by concatenating all the elements of an array separated by the specified separator.