मान लें कि निम्नलिखित हमारी सरणी है -
var listOfNames = [ 'John', 'David', 'Bob' ];
हमारा बटन निम्नलिखित है -
<button id="reverse" onclick="reverseTheArray()">Click The Button To get the Reverse Value</button>
अब, ऐरे आइटम्स के लिए उल्टे क्रम में, सबसे पहले, ऐरे की लंबाई तक पहुँचें और लंबाई को 1 से घटाएँ। फिर, विशेष इंडेक्स की सामग्री को उल्टे क्रम में प्रिंट करें।
उदाहरण
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> </head> <body> <div align="center" id='reverseTheArray'></div> <button id="reverse" onclick="reverseTheArray()">Click The Button To get the Reverse Value</button> <script> var listOfNames = [ 'John', 'David', 'Bob' ]; count=listOfNames.length-1; function reverseTheArray(){ document.getElementById('reverseTheArray').innerHTML = listOfNames[count]; count--; if (count<0) count=listOfNames.length-1; } </script> </body> </html>
उपरोक्त प्रोग्राम को चलाने के लिए, फ़ाइल नाम "anyName.html(index.html)" को सेव करें और फ़ाइल पर राइट क्लिक करें। वीएस कोड संपादक में "लाइव सर्वर के साथ खोलें" विकल्प चुनें।
आउटपुट
यह निम्नलिखित आउटपुट देगा -
चरण 1
जब आप बटन पर क्लिक करते हैं, तो आपको सरणी का अंतिम मान मिलेगा। यह निम्नलिखित आउटपुट देगा -
चरण 2
फिर से, बटन पर क्लिक करें, आपको दूसरा अंतिम मान मिलेगा। यह निम्नलिखित आउटपुट देगा -