返回一個字串。該字串是通過把 arrayObject 的每個元素轉換為字串,然後把這些字串連線起來,在兩個元素之間插入 separator 字串而生成的。
separator可以傳可以傳,不傳預設為,
let array = ['周歡','嗯嗯','good','hahah']
console.log(array, 333) //["周歡", "嗯嗯", "good", "hahah"]
let test = array.join(".")
console.log(test, 333) //周歡.嗯嗯.good.hahah