I have the following JSON:
{
    "meta": {
        "limit": 20,
        "next": null,
        "offset": 0,
        "previous": null,
        "total_count": 0
    },
    "objects": []
}
I'm interested in objects: I want to know if objects is empty and show an alert:
something like this:
success: function (data) {
    $.each(data.objects, function () {
        if data.objects == None alert(0)
        else :alert(1)
    });
                i don't know what is you meaning about empty object, but if you consider
{}
as a empty object, i suppose you use the code below
var obj = {};
if (Object.keys(obj).length === 0) {
    alert('empty obj')
}
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With