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