Objects in Objects in Array

saving 3 jquery selectors into an array and showing their structure in console.log.

by nickadeemus2002

JavaScript

var jQ1 = $();
var jQ2 = $();
var jQ3 = $();

jQ1.push(jQ2,jQ3);

console.log( jQ1 );
console.log( jQ1[0] );