Loop through JS object (>=ES5)
If I don't want to rely on underscore
or writing this:
for (var k in p) {
if (p.hasOwnProperty(k)) {
console.log(k, p[k]);
}
}
With ES5 and above I can do this:
Object.keys(p).forEach(function (k) {
console.log(k, p[k]);
}
Related protips:
Written by Long Ho
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#