TypedArray ऑब्जेक्ट का शामिल () फ़ंक्शन एक मान स्वीकार करता है और सत्यापित करता है कि इस टाइप किए गए सरणी में निर्दिष्ट तत्व है या नहीं। यदि सरणी में दिया गया तत्व है, तो यह सही है, अन्यथा यह गलत है।
सिंटैक्स
इसका सिंटैक्स इस प्रकार है
typedArray.includes()
उदाहरण
<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 ]); document.write("Contents of the typed array: "+int32View); document.write("<br>"); var contains = int32View.includes(66); if(contains) { document.write("Array contains the specified element"); }else { document.write("Array doesn’t contains the specified element"); } </script> </body> </html>
आउटपुट
Contents of the typed array: 21,19,65,21,14,66,87,55 Array contains the specified element
उदाहरण
<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 ]); document.write("Contents of the typed array: "+int32View); document.write("<br>"); var contains = int32View.includes(762); if(contains) { document.write("Array contains the specified element"); }else { document.write("Array doesn’t contains the specified element"); } </script> </body> </html>
आउटपुट
Contents of the typed array: 21,19,65,21,14,66,87,55 Array doesn’t contains the specified element