hot to return joined strings javascript code example
Example 1: can you do a join() in js without the commas
arr.join("")
Example 2: javascript join 2 variables into string
A = 'hello ';
B = 'world!';
// outputs "hello world!"
console.log(A + B);