Say I have an Array of rows. Each row has an entity object. I want an Array of the entities. Is there a built-in or jquery array op that does this, but faster?
var nodes = [];
for( var inx = 0; inx < rows.length; inx++ ) {
nodes.push( rows[ inx ].entity );
}