Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 585 Bytes

File metadata and controls

5 lines (5 loc) · 585 Bytes
## arrayToStringConvert an array to a string and combine on the delimiter passed.### Parameters* `array` **AnyArray** array to convert to string
  • delimiter [String][1] characater to use in combining to string### Examples```javascript arrayToString(['The', 'quick', 'brown'], '-'); // => 'The-brown-fox'