Write Your JavaScript Code Here

// toString():- The toString() method is used for converting and representing an array into string form. It returns the string containing the specified array elements. Commas separate these elements, and the string does not affect the original array. let arr=["m","a","y","u","r"]; console.log(arr.toString());

Output: