TypedArray ऑब्जेक्ट का रिवर्स () फ़ंक्शन टाइप किए गए ऐरे की सामग्री को उलट देता है।
सिंटैक्स
इसका सिंटैक्स इस प्रकार है
typedArray.reverse()
उदाहरण
<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 result = typedArray.reverse(Math.sqrt); document.write("Contents of the reversed array: "+result); </script> </body> </html>
आउटपुट
Contents of the typed array: 11,5,13,4,15,3,17,2,19,8 Contents of the reversed array: 8,19,2,17,3,15,4,13,5,11