Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「for in」ステートメントを次の条件を含むように変更できますか?
if (object.hasOwnProperty(variable) { }
ループに入れてください:
for (var i in o) { if (!o.hasOwnProperty(i)) continue; ... }
MDN には、これに似た例があります。