Last Updated : 02 Sep, 2024
Lodash _.join() function is used to convert all elements in the array into a string separated by a separator.
Syntax:_.join(array, [separator=',']);Parameter:
Example 1: In this example, the _.join() method joins together the elements of the array into a string using ‘|’.
JavaScript
// Requiring the lodash library
let _ = require("lodash");
// Original array to be joined
let array = [1, 2, 3, 4, 5, 6];
let newArray = _.join(array, '|');
console.log("Before Join: " + array);
// Printing newArray
console.log("After Join: " + newArray);
Output:
Example 2: In this example, the _.join() method joins together the elements of the array into a string using ‘, ‘ since it is the default value.
JavaScript
// Requiring the lodash library
let _ = require("lodash");
// Original array to be joined
let array = [1, 2, 3, 4, 5, 6];
let newArray = _.join(array);
console.log("Before Join: " + array);
// Printing newArray
console.log("After Join: " + newArray);
Output:
Example 3: In this example, the _.join() method joins together the elements of the array into a string using ‘ ‘ (empty string).
JavaScript
// Requiring the lodash library
let _ = require("lodash");
// Original array to be joined
let array = [1, 2, 3, 4, 5, 6];
let newArray = _.join(array, '');
console.log("Before Join: " + array);
// Printing newArray
console.log("After Join: " + newArray);
Output:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4