Hàm subarray () của đối tượng TypedArray trả về một phần của mảng hiện tại. Nó chấp nhận hai số đại diện cho phần đầu và phần cuối của mảng con.
Cú pháp
Cú pháp của nó như sau
typedArray.subarray(5, 9)
Ví dụ
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var typedArray = new Int32Array([111, 56, 62, 40, 75, 36, 617, 2, 139, 827 ]); var result = typedArray.subarray(3, 7); document.write("Contents of the typed array: "+result); </script> </body> </html>
Đầu ra
Contents of the typed array: 40,75,36,617