Phương thức slice () của đối tượng mảng đã nhập trả về một phần hoặc, đoạn từ bộ đệm mảng (như một đối tượng riêng biệt). Nó chấp nhận hai đối số số nguyên đại diện cho phần bắt đầu và phần cuối của mảng được trả về.
Cú pháp
Cú pháp của nó như sau
arrayBuffer.slice(3, 8)
Ví dụ
<html> <head> <title>JavaScript Array every Method</title> </head> <body> <script type="text/javascript"> var typedArray = new Int32Array([11, 5, 13, 4, 15, 3, 17, 2, 19, 8 ]); document.write("Contents of the typed array: "+typedArray); document.write("<br>"); var resultantArray = typedArray.slice(2, 7); document.write("Resultant Array: "+resultantArray); </script> </body> </html>
Đầu ra
Contents of the typed array: 11,5,13,4,15,3,17,2,19,8 ResultantArray: 13,4,15,3,1