• 0

Convert the given array of elements to a string

Problem description :

Write a function that converts a given array into a string.

Input : An Array
Output : A String

Logic :

  • Iterate through array
    • concatenate the new element into the string
  • Return a new string.

Solution :


If you are allowed to use the inbuilt methods of javascript you can use the following method.