join array of objects javascript code example

Example 1: join last element of array javascript with different value

['tom', 'dick', 'harry'].join(', ').replace(/, ([^,]*)$/, ' and $1')
> "tom, dick and harry"

Example 2: .join javascript

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"

Example 3: join array of object name javascript

this.checklist.filter(x=> x.isSelected).map(y =>{ return y.catItem }).join(", ")