xxxxxxxxxx
var array = ["Joe", "Kevin", "Peter"];
array.join(); // "Joe,Kevin,Peter"
array.join("-"); // "Joe-Kevin-Peter"
array.join(""); // "JoeKevinPeter"
array.join(". "); // "Joe. Kevin. Peter"
xxxxxxxxxx
// join an array together into a string
// array for the .join() method
let numbers = [3, 1, 6]
let string = numbers.join(', ') // returns '3, 1, 6'
// Also works the same just for an array of STRINGS
xxxxxxxxxx
//turns array to string
const elements = ['Fire', 'Air', 'Water'];
console.log(elements.join());
// expected output: "Fire,Air,Water"
console.log(elements.join(''));
// expected output: "FireAirWater"
console.log(elements.join('-'));
// expected output: "Fire-Air-Water"
xxxxxxxxxx
//The join() method also joins all array elements into a string.
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.join(" * ");
// result : Banana * Orange * Apple * Mango
//if you find this answer is useful ,
//upvote ⇑⇑ , so can the others benefit also . @mohammad alshraideh ( ͡~ ͜ʖ ͡°)
xxxxxxxxxx
const elements = ['Fire', 'Air', 'Water'];
console.log(elements.join());
// expected output: "Fire,Air,Water"
console.log(elements.join(''));
// expected output: "FireAirWater"
console.log(elements.join('-'));
// expected output: "Fire-Air-Water"
xxxxxxxxxx
var a = ['Wind', 'Water', 'Fire'];
a.join(); // 'Wind,Water,Fire'
a.join(', '); // 'Wind, Water, Fire'
a.join(' + '); // 'Wind + Water + Fire'
a.join(''); // 'WindWaterFire'
xxxxxxxxxx
const cities = ['London', 'Paris', 'Tokyo'];
const joinedCities = cities.join('-');
console.log(joinedCities); // London-Paris-Tokyo
xxxxxxxxxx
<html>
<select multiple class="select-colors">
<option>blue</option>
<option>green</option>
</select>
</html>
<script>
var myColorSelect = $(".select-colors").val().join();
console.log(myColorSelect);
</script>
xxxxxxxxxx
const data = [
{
id: 1,
name: "adam",
age: 19
},
{
id: 2,
name: "Ollie",
age: 20
}
];
const _data = [
{
id: 2,
subject: "English"
}
];
const newData = data.map((item) => {
const matchingItem = _data.find((element) => element.id === item.id);
return {
item,
matchingItem
};
});
console.log(newData);