ex08-07-1

実行結果

1,,hello,,true,
1hellotrue
1 -- -- hello -- -- true --

ソース

const arr = [1, null, "hello", "world", true, undefined];
delete arr[3];
let result = arr.join();
console.log(result); // 1,,hello,,true,
result = arr.join('');
console.log(result); // 1hellotrue
result = arr.join(' -- ');
console.log(result); // 1 --  -- hello --  -- true --