สำหรับ join() จะเกี่ยวข้องกับการแสดงผลของ array บน JS
มาดูตัวอย่างกัน
const data = [11,22,33,44];
console.log(data.join());
ผลลัพท์จะได้เป็น
11,22,33,44
จะสังเกตว่าไม่มีการแสดงเครื่องหมาย [] ปรากฏอยู่
สำหรับตัวอย่าง หากเราจะเปลี่ยนเครื่องหมาย จาก "," ไปเป็นอย่างอื่น เช่น "*"
สามารถเขียน code ได้เป็น
const data = [11,22,33,44];
console.log(data.join("*"));
ผลลัพท์จะได้เป็น
11*22*33*44
หรืออีกตัวอย่าง
const data = [11,22,33,44];
console.log(data.join("-"));
ผลลัพท์จะได้เป็น
11-22-33-44
มาดูตัวอย่างอื่น ๆ
let sumNum = (...numArr) => {
let total = 0
total = numArr.map((num) => total += num)
return total
}
console.log(sumNum(10,10).join())
ผลลัพท์
10,20
Top comments (0)