TypedArray ऑब्जेक्ट का indexOf () फ़ंक्शन एक मान स्वीकार करता है और सत्यापित करता है कि टाइप किए गए सरणी में निर्दिष्ट तत्व है या नहीं। यदि ऐसा है, तो यह फ़ंक्शन उस सरणी की अनुक्रमणिका देता है जिस पर निर्दिष्ट तत्व पाया जाता है, यदि तत्व कई बार हुआ है तो यह फ़ंक्शन उनके बीच पहला अनुक्रमणिका देता है। यदि सरणी में निर्दिष्ट तत्व नहीं है तो indexOf() फ़ंक्शन -1 लौटाता है।
सिंटैक्स
इसका सिंटैक्स इस प्रकार है
typedArray.indexOf(50)
उदाहरण
<html> <head> <title>JavaScript Array every Method</title> </head> <body> <script type="text/javascript"> var int32View = new Int32Array([21, 19, 65, 21, 14, 66, 87, 55, 66, 97, 66 ]); document.write("Contents of the typed array: "+int32View); document.write("<br>"); var contains = int32View.indexOf(66); document.write("Specified element occurred at the index: "+contains); </script> </body> </html>
आउटपुट
: Contents of the typed array: 21,19,65,21,14,66,87,55 Specified element occurred at the index: 5
उदाहरण
<html> <head> <title>JavaScript Array every Method</title> </head> <body> <script type="text/javascript"> var int32View = new Int32Array([21, 19, 65, 21, 14, 66, 87, 55, 66, 97, 66 ]); document.write("Contents of the typed array: "+int32View); document.write("<br>"); var contains = int32View.indexOf(634); document.write("Specified element occurred at the index: "+contains); </script> </body> </html>
आउटपुट
: Contents of the typed array: 21,19,65,21,14,66,87,55 Specified element occurred at the index: -1