I have a function that returns JSON information. I want to be able to store that into a variable and then use alert and the variable name to display the content returned from that function. Here is my code:
var getStuff2 (function (num) {
    $.getJSON('http://whateverorigin.org/get?url=' + encodeURIComponent('http://catholic.com/api-radio/' + num) + '&callback=?', function(data) {
        //console.log(data.contents);
        //$('#response').text(data.contents);
        obj = data.contents;
        //alert(obj);
    }];
    return data.contents;
});
}); 
function getData(){
    getStuff2(6387);
}
getData();
alert(getStuff2);
 
     
     
     
    