How to get the position of smallest element in an array and swap with that value with neighbor value for "selection sort" using javascript?
var list = [];
Math.max.apply(Math, list); //maximum
Math.min.apply(Math, list); //minimum
function getInput() {
var str_one = document.getElementById("one").value;
var str_two = document.getElementById("two").value;
var str_three = document.getElementById("three").value;
var str_four = document.getElementById("four").value;
var str_five = document.getElementById("five").value;
var str_six = document.getElementById("six").value;
list.push(str_one, str_two, str_three, str_four, str_five, str_six);
$('#qstnDiv').html(list + ',');
}
function output() {
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="js/script.js"></script>
<script src="js/jquery-latest.min.js"></script>
<link type="text/css" href="style.css" rel="stylesheet" />
</head>
<body>
<form onsubmit="store(this); return false">
1:<input type="text" id="one" /><br /> 2:
<input type="text" id="two" /><br /> 3:
<input type="text" id="three" /><br /> 4:
<input type="text" id="four" /><br /> 5:
<input type="text" id="five" /><br /> 6:
<input type="text" id="six" /><br />
<input type="button" value="Click Me" onclick="getInput(); output();" />
</form><br />
<p id="in">Input</p><br />
<div id="qstnDiv"></div><br />
<p id="out">Output</p><br />
<div id="anwrDiv"></div>
</body>
</html>
I want sort the numbers form the text box using selection sort so please help me
.sort()function