TypedArray ऑब्जेक्ट का copyWithin () फ़ंक्शन इस TypedArray की सामग्री को अपने भीतर कॉपी करता है। यह विधि तीन संख्याओं को स्वीकार करती है जहाँ पहली संख्या उस सरणी के सूचकांक का प्रतिनिधित्व करती है जिस पर तत्वों की प्रतिलिपि शुरू की जानी चाहिए और, अगले दो नंबर उस सरणी के प्रारंभ और अंत तत्वों का प्रतिनिधित्व करते हैं जिससे डेटा की प्रतिलिपि बनाई जानी चाहिए (लिया)। पी>
सिंटैक्स
इसका सिंटैक्स इस प्रकार है
obj.copyWithin(3, 1, 3);
उदाहरण
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var int32View = new Int32Array([21, 64, 89, 65, 33, 66, 87, 55 ]); document.write("Contents of the typed array: "+int32View); int32View.copyWithin(5, 0, 5); document.write("<br>"); document.write("Contents of the typed array after copy: "+int32View); </script> </body> </html>
आउटपुट
Contents of the typed array: 21,64,89,65,33,66,87,55 Contents of the typed array after copy: 21,64,89,65,33,21,64,89
उदाहरण
इस फ़ंक्शन के लिए तीसरा पैरामीटर पास करना अनिवार्य नहीं है (ऐरे के अंतिम तत्व जिससे डेटा कॉपी किया जाना चाहिए) यह सरणी के अंत तक कॉपी करेगा।
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var int32View = new Int32Array([21, 64, 89, 65, 33, 66, 87, 55 ]); document.write("Contents of the typed array: "+int32View); int32View.copyWithin(5, 0); document.write("<br>"); document.write("Contents of the typed array after copy: "+int32View); </script> </body> </html>
आउटपुट
Contents of the typed array: 21,64,89,65,33,66,87,55 Contents of the typed array after copy: 21,64,89,65,33,21,64,89