किसी सरणी का न्यूनतम और अधिकतम तत्व प्राप्त करने के लिए, जावास्क्रिप्ट में Math.min() और Math.max() विधि का उपयोग करें। आप न्यूनतम और अधिकतम तत्व खोजने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<html> <body> <script> var arr = [50, 30, 70, 60]; document.write("Maximum Value: "+Math.max.apply(null, arr)); document.write("<br>Minimum Value: "+Math.min.apply(null, arr)); </script> </body> </html>
आउटपुट
Maximum Value: 70 Minimum Value: 30