สอนภาษา JavaScript เพิ่มข้อมูลลงในตัวแปร Array ด้วยคำสั่ง push โดยรองรับการเพิ่มข้อมูลเดียว หรือหลายข้อมูลก็ได้โดยใช้ลูกน้ำคั่นระหว่างข้อมูลแต่ละตัว สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง JavaScript เพิ่มข้อมูลใน Array ด้วยคำสั่ง push
<script>
var a = ["apple", "orange", "banana"];
a.push( "berry", "mango");
console.log( a );
</script>
ผลลัพธ์
(5) ['apple', 'orange', 'banana', 'berry', 'mango']