xxxxxxxxxx
<html>
<body>
<script>
let arr = [1, 2, 3, 4, 5];
// هنا قمنا بحذف الثلاث عناصر التالية
// الموجودة إبتداءاً من الفهرس رقم 1
arr.splice(1, 3);
document.write(arr);
</script>
</body>
</html>
xxxxxxxxxx
<html>
<body>
<script>
let arr = [1, 2, 3, 4, 5];
// هنا قمنا بحذف الثلاث عناصر التالية
// الموجودة إبتداءاً من الفهرس رقم 1
arr.splice(1, 3);
document.write(arr);
</script>
</body>
</html>