* Converts all elements in `array` into a string separated by `separator`. * * @static * @memberOf _ * @since 4.0.0 * @category Array * @param {Array} array The array to convert. * @param {string} [separator=','] The element separator.
(array, separator)
| 18216 | * // => 'a~b~c' |
| 18217 | */ |
| 18218 | function join(array, separator) { |
| 18219 | return array == null ? '' : nativeJoin.call(array, separator); |
| 18220 | } |
| 18221 | |
| 18222 | /** |
| 18223 | * Gets the last element of `array`. |
no outgoing calls
no test coverage detected