The most viewed items
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Code Testing</title>
</head>
<body>
<p id = "demo"></p>
<script>
var txt = "";
var numbers = [302, 428, 49, 92, 84, 70, 80, 10, 3, 200];
var num = numbers.sort(function (a, b){return a - b;});
txt = "<ol>";
num.forEach(jsFunction);
document.getElementById("demo").innerHTML = txt;
function jsFunction(value){
txt += "<li>" + value + "</li><br/><hr/><br/>";
}
txt += "</ol>";
</script>
</body>
</html>
No comment to show.