du skal kigge på et associative+array
https://www.google.dk/search?q=js+associative+arrayog løbe det igennem med en foreach
https://www.google.dk/search?q=js+foreach+loophttps://www.google.dk/search?q=javascript+max+value+in+associative+arrayref
https://www.google.dk/search?q=javascript+foreach+loop+associative+arrayhttps://www.electrictoolbox.com/loop-key-value-pairs-associative-array-javascript/<!DOCTYPE html>
<html lang="da">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<title>demo</title>
</head>
<body>
<script type="text/javascript" content-type: application/javascript;charset="utf-8">
var items = {jan :10, feb :23, mar :42, apr:31};
var max_value = 0;
var month_value = 0;
for(var index in items) {
if(items[index] > max_value){
max_value = items[index];
month_value = index;
}
}
document.write( "måned med max værdi er: " + month_value + " og værdien er: " + max_value );
</script>
</body>
</html>
du kunne også kigge på jquery each
http://api.jquery.com/jquery.each/hvis du anvender jquery i forvejen