Como verificar se um objeto JSON contém uma chave no jQuery
if(myObject.hasOwnProperty('key_name')){
console.log('Key exists in Object!');
}
Strange Snake
if(myObject.hasOwnProperty('key_name')){
console.log('Key exists in Object!');
}