How to find whether a JavaScript object has key with specific regex pattern ? For example, in the below object, how to find whether it contains a key containing the word "Address"?
var obj = {Address_Line1 : "XXX", Address_Line2 :"YYY", Name : "ZZZ"};
Object.keys(obj).toString().indexOf('Address') !== -1