For the purpose of this question lets say we need to append() 1000 objects to the body element.
append()
body
You could go about it like this:
I know, the question is old, but maybe it helps others.
Or simple use ECMA6 spread operator:
$('body').append(...elements);