Here's a question for you: When it comes to adding elements at the end of a JavaScript array, is there any speed or optimization advantage to using one form over the other? Or does it simply come down to personal preference?
(1) pageData[pageData.length] = theMember;
(2) pageData.push(theMember);