fazlurr
1/9/2017 - 1:16 PM

Iterate through object property - http://stackoverflow.com/a/684692/5627904

Iterate through object property - http://stackoverflow.com/a/684692/5627904

for (var key in p) {
  if (p.hasOwnProperty(key)) {
    console.log(key + " -> " + p[key]);
  }
}