Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Javascript

TypedArray.includes() जावास्क्रिप्ट में फ़ंक्शन

<घंटा/>

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

  1. जावास्क्रिप्ट ऐरे भरण () फ़ंक्शन

    जावास्क्रिप्ट की भरण () विधि का उपयोग किसी सरणी में तत्वों को स्थिर मान से भरने के लिए किया जाता है। वाक्य रचना इस प्रकार है - array.fill(val, start, end) ऊपर, वैल सरणी को भरने के लिए मान है, सरणी भरना शुरू करने के लिए प्रारंभ सूचकांक है, जबकि अंत सरणी भरने को रोकने के लिए अनुक्रमणिका है। आइए अब

  1. जावास्क्रिप्ट Array.of () फ़ंक्शन

    जावास्क्रिप्ट की Array.of () विधि का उपयोग पैरामीटर मानों के रूप में चर के साथ एक नया सरणी उदाहरण बनाने के लिए किया जाता है। वाक्य रचना इस प्रकार है - Array.of(elements....) ऊपर, तत्व पैरामीटर मान के रूप में मान हैं। आइए अब जावास्क्रिप्ट में Array.of() विधि को लागू करें - उदाहरण <!DOCTYPE htm

  1. जावास्क्रिप्ट सरणी। शामिल () फ़ंक्शन

    जावास्क्रिप्ट की array.includes() विधि का उपयोग यह जांचने के लिए किया जाता है कि किसी सरणी में एक निर्दिष्ट तत्व है या नहीं। वाक्य रचना इस प्रकार है - array.includes(ele, start) ऊपर, पैरामीटर ele खोजने के लिए तत्व है। प्रारंभ पैरामीटर के साथ खोज शुरू करने की स्थिति है। आइए अब जावास्क्रिप्ट में ar