method

join

v1_8_7_72 - Show latest stable - Class: Array
join(...)
public

Returns a string created by converting each element of the array to a string, separated by sep.

   [ "a", "b", "c" ].join        #=> "abc"
   [ "a", "b", "c" ].join("-")   #=> "a-b-c"