<html>
<head>
<title>YouCube - The Blog for Cube Puzzlers</title>
<script type="text/javascript">
// Blog object constructor
function Blog(body, date) {
// Assign the properties
this.body = body;
this.date = date;
}
// Global array of blog entries
var blog = [ new Blog("Got the new cube I ordered. It's a real pearl.", new Date("08/14/2008")),
new Blog("Solved the new cube but of course, now I'm bored and shopping for a new one.", new Date("08/19/2008")),
new Blog("Managed to get a headache toiling over the new cube. Gotta nap.", new Date("08/16/2008")),
new Blog("Found a 7x7x7 cube for sale online. Yikes! That one could be a beast.", new Date("08/21/2008")) ];
// Show the list of blog entries
function showBlog(numEntries) {
// First sort the blog in reverse chronological order (most recent first)
blog.sort(function(blog1, blog2) { return blog2.date - blog1.date; });
// Adjust the number of entries to show the full blog, if necessary
if (!numEntries)
numEntries = blog.length;
// Show the blog entries
var i = 0, blogText = "";
while (i < blog.length && i < numEntries) {
// Use a gray background for every other blog entry
if (i % 2 == 0)
blogText += "<p style='background-color:#EEEEEE'>";
else
blogText += "<p>";
// Generate the formatted blog HTML code
blogText += "<strong>" + (blog[i].date.getMonth() + 1) + "/" +
blog[i].date.getDate() + "/" +
blog[i].date.getFullYear() + "</strong><br />" +
blog[i].body + "</p>";
i++;
}
// Set the blog HTML code on the page
document.getElementById("blog").innerHTML = blogText;
}
</script>
</head>
<body onload="showBlog(5);">
<h3>YouCube - The Blog for Cube Puzzlers</h3>
<img src="cube.png" alt="YouCube" />
<div id="blog"></div>
<input type="button" id="showall" value="Show All Blog Entries" onclick="showBlog();" />
</body>
</html>
Всем привет. У меня возник вопрос по методу sort вот здесь
blog.sort(function(blog1, blog2) { return blog2.date - blog1.date; });:
Я понимаю что он делает (сортирует даты по убыванию), но я не понимаю как он это делает. Во первый, что еще за blog1 и blog2 ,что это такое и каким макаром отнимая blog2.date от blog1.date массив сортируется по убыванию, если следовать моей логике результатом такого действия должно быть число, а точнее разница между первой второй датой и первой в миллисекундах.
Всем заранее благодарен за помощь.