I have this array of object, how can I loop through it using jQuery.each()?
Array
(
[0] => stdClass Object
(
[id] => 1
[parent_cat_id] => 1
[child_cat_name] => Java
[status] => 1
[date] => 2016-09-11 01:26:00
)
[1] => stdClass Object
(
[id] => 2
[parent_cat_id] => 1
[child_cat_name] => JavaScript
[status] => 1
[date] => 2016-09-11 01:26:00
)
[2] => stdClass Object
(
[id] => 3
[parent_cat_id] => 1
[child_cat_name] => HTML
[status] => 1
[date] => 2016-09-11 01:26:00
)
[3] => stdClass Object
(
[id] => 4
[parent_cat_id] => 1
[child_cat_name] => PHP
[status] => 1
[date] => 2016-09-11 01:26:00
)
[4] => stdClass Object
(
[id] => 5
[parent_cat_id] => 1
[child_cat_name] => Python
[status] => 1
[date] => 2016-09-11 01:26:00
)
[5] => stdClass Object
(
[id] => 6
[parent_cat_id] => 1
[child_cat_name] => Ruby
[status] => 1
[date] => 2016-09-11 01:26:00
)
)
I am trying to use this -
$.each( data, function( key, value ) {
console.log( value );
});
Which giving me following error -
TypeError: invalid 'in' operand e
console.log(data)