json object contains key javascript code example
Example 1: check if json obj exists
if(thisSession.hasOwnProperty('merchant_id')){
}
Example 2: js object contain key
if ('key' in myObj)
// better
if (!myObj.hasOwnProperty('key'))
if(thisSession.hasOwnProperty('merchant_id')){
}
if ('key' in myObj)
// better
if (!myObj.hasOwnProperty('key'))