I'm getting back the following JSON:
{"array":[],"object":null,"bool":false}
And I'm testing it with the following, seemingly exhaustive, if statement:
$.ajax({
type: "GET",
url: "/ajax/rest/siteService/list",
dataType: "json",
success: function (response) {
var siteArray = response.array;
// Handle the case where the user may not belong to any groups
if (siteArray === null || siteArray=== undefined || siteArray=== '' || siteArray.length === 0) {
window.alert('hi');
}
}
});
But the alert is not firing. :[