OLD | NEW |
(Empty) | |
| 1 <body> |
| 2 <script> |
| 3 e = document.createElement("div"); |
| 4 console.log(e.children instanceof HTMLCollection); // true |
| 5 for (i in e.children) { |
| 6 console.log(i); // length, item, namedItem |
| 7 } |
| 8 console.log(e.children.__proto__.hasOwnProperty("length")); // true |
| 9 console.log(e.children.__proto__.hasOwnProperty("item")); // true |
| 10 console.log(e.children.item(0)); // null (i.e., does not throw) |
| 11 console.log(e.children.length); // Uncaught TypeError: Illegal invocation |
| 12 </script> |
| 13 </body> |
OLD | NEW |