วิธีการ sort() ของ Typed Array วัตถุจัดเรียงองค์ประกอบของอาร์เรย์ในลำดับจากน้อยไปมากและส่งกลับ
ไวยากรณ์
ไวยากรณ์ของมันคือดังต่อไปนี้
arrayBuffer.sort()
ตัวอย่าง
<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.sort(); document.write("Resultant Array: "+resultantArray); </script> </body> </html>
ผลลัพธ์
Contents of the typed array: 11,5,13,4,15,3,17,2,19,8 Resultant Array: 2,3,4,5,8,11,13,15,17,19