Tuesday, 20 August 2013

Right name to these arrays

Right name to these arrays

I would like to know what is the right names for these 2 arrays:
//html
<div></div>
<div></div>
<div></div>
// javascript/jquery
var all = $('div');
console.log(all); //array 1
console.log(all.get()); //array 2
Array 1 - Array of objects?
Array 2 - Array of elements?
Fiddle (if needed)

No comments:

Post a Comment